Problem with wanadoo.fr and orange.fr

Chris33

New Member
Hello,

For a while our emails are going in spam with Wanadoo and orange,

Emails goes in inbox with gmail, live etc... .

Do you have an idea why ? We have to change headers or something else ?

Thanks
 
Do you have an idea why ? We have to change headers or something else ?
Go to www.mail-tester.com and click on the "Copy the email address" button. This will provide you with a unique email address to which you will send your test campaign, include the test email address provided by www.mail-tester.com in your list.
Send campaign and make sure the content, subject line, and sender details are consistent with your regular campaigns. Once the test campaign is sent, go back to www.mail-tester.com and click on the "Check your score" button. The service will analyze various aspects of your email and provide you with a score, the mail-tester score will give you insights into potential issues affecting your email deliverability.
 
Why aren't you using https?

Anyway, you can change the track-opening part by setting the campaign.track.open.url.segment application param:
Code:
'campaign.track.open.url.segment' => 'to',
See https://www.mailwizz.com/kb/adding-custom-configuration-params/

BUT, you really need to see why you got this problem in the first place, you should contact them and ask why. If huge providers like gmail and yahoo answer the postmaster emails, they must as well.
 
Hello,

Thanks for your reply,

I put this in apps/common/config/main-custom.php

'params' => array(
'campaign.track.open.url.segment' => 'news.track.open.url.segment',
),

I have this result :
<a data-unsubtag=3D"_UNSUBSCRIBE_URL_" href=3D"http://tracking.xxxxxx.com=
/campaigns/zt229qykg2418/track-url/gm259t008w035/f07e1848dbd71783390d9d52f3=
790c4f46addf32">desc</a><img width=3D"1" height=3D"1" src=3D"http://trackin=
g.xxxxxxx/campaigns/zt229qykg2418/news.track.open.url.segment/gm259t00=
8w035" alt=3D"" />

Is there a way to change the href ?

Thanks
 
'params' => array(
'campaign.track.open.url.segment' => 'news.track.open.url.segment',
),
This isn't correct, instead of '
news.track.open.url.segment

You can to use words separated by dashes, i.e: whatever-custom-tracking-segment-you like.

If you want to do the same for url tracking, then you need to set the 'campaign.track.click.url.segmen' param, so you should have:

PHP:
'params' => [
        'email.custom.header.prefix' => 'X-',

        'campaign.track.click.url.segment'  => 'tc',
        'campaign.track.open.url.segment'   => 'to',
    ],
and use whatever else instead of tc and to, but make sure they are different.
 
Hello

Thanks a lot

I put

'campaign.track.open.url.segment' => 't1-newsletter',
'campaign.track.click.url.segment' => 't2-newsletter',

It works fine for us.
 
Back
Top