"Adına" Seeing

2 Cevap php

I use a PHP mailer with of my online programs and recently when I look in outlook I see 'crazyphil@host.validns.com on behalf of My Mailer [no-reply@mydomain.com]' when I receive emails from any of my domains.

Daha önce crazyphil@host.validns.com nobody@host.validns oldu:

Return-path: <nobody@host.validns.com>
Received: from nobody by host.validns.com with local (Exim 4.69)
    (envelope-from <nobody@host.validns.com>)

Böyle güzel olması için kullanılır, ama benim ana tarafta bir şey değişti ve şimdi ben 'on yerimize' olsun. Bu şimdi ortaya çıkan, daha önce değil (bunların hepsi değişti birine kimse yoktu çünkü!) Ve nasıl çözmek için neden herkes biliyor musun?

Teşekkür ederim,

Phil

2 Cevap

Eğer mailler gelen başlığını ayarlamanız gerekir gibi geliyor.

Biri bulunamazsa, posta sunucuları genellikle kendi ekleyecektir.

Normal php gibi birşey olurdu


$headers = "FROM: 'fromname' <from@example.com\r\n>";

mail($to, $subject, $body, $headers);

Zaten başlığındaki From vardı, ama başlığında bir fark göz ardı:

Sender: <crazyphil@host.validns.com>

This line popped up in all emails from my host, even those sent by the cron daemon. Getting this removed resolved the issue.

Teşekkürler olsa!

- Phil