gpt4 book ai didi

php - 我怎样才能强制从 : header (envelope sender) in PHP without putting it in mail()?

转载 作者:可可西里 更新时间:2023-11-01 12:37:34 25 4
gpt4 key购买 nike

我有一个开发 Web 服务器(CentOS LAMP 堆栈),它使用 postfix 中的 SMTP 中继设置来发送电子邮件。我们将 mailgun 与多个用户一起使用,设置类似于 this ,但针对特定用户而不仅仅是通配符电子邮件:

/etc/postfix/main.cf

smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
smtp_sasl_auth_enable = yes
sender_dependent_relayhost_maps = hash:/etc/postfix/relayhost_map
smtp_sender_dependent_authentication = yes
smtp_sasl_security_options = noanonymous
relayhost = [smtp.mailgun.org]:587

/etc/postfix/sasl_passwd

# our domains
no-reply@domain.com postmaster@domain.com:password1
info@domain2.com postmaster@domain2.com:password2
support@domain3.com postmaster@domain3.com:password3

# in-case we don't have it setup, use a default
#[smtp.mailgun.org]:587 postmaster@domain2.com:password2

/etc/postfix/relayhost_map

no-reply@domain.com  [smtp.mailgun.org]:587
info@domain2.com [smtp.mailgun.org]:587
support@domain3.com [smtp.mailgun.org]:587

为了设置电子邮件日志记录,我在机器上使用他们自己的 SMTP 凭据对每个开发人员进行身份验证。我想对其进行设置,以便开发人员无需添加 additional_headersadditional_parameters 即可在 postfix 中获得正确的 smtp 中继匹配 - 实际上这需要很多时间为不同的开发人员在代码中设置不同的邮件 header 的工作,尤其是版本代码。我离题了。当我使用以下内容时,从 postfix 的角度来看,这工作得很好:

mail('email@address.tld', 'subject', 'message here...', 'From: noreply@domain.com', '-fnoreply@domain.com');

然后我将以下内容添加到虚拟主机配置中:

php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -fnoreply@domain.com"

它成功地让我摆脱了 -f additional_parameter 并且仍然正确发送。然后我添加了以下内容:

php_value sendmail_from "noreply@domain.com"

phpinfo() 转储中,我看到 sendmail_from 的本地值设置正确,但是现在当我发送电子邮件时,它显示为:

None@domain.com on behalf of Apache

似乎是正确的发件人(MIME,而不是信封,因为 postfix 识别身份验证并给出 250 Great success)。使用详细的 postfix 日志记录,我只能看到来自发件人输入属性的正确电子邮件的引用。

在 mailgun 中,我从日志中看到以下信息,但是,对于 From: noreply@domain.com 使用的电子邮件:

...
"envelope": {
"transport": "smtp",
"sender": "noreply@domain.com",
"sending-ip": "x.x.x.x",
"targets": "email@address.tld"
},
"message": {
"headers": {
"to": "email@address.tld",
"message-id": "2014061111016.ABC1D23456E@domain.com",
"from": "noreply@domain.com (Apache)",
"subject": "Debug Test"
},
"attachments": [],
"recipients": [
"email@address.tld"
],
"size": 654
},
...

有趣的是当 From: noreply@domain.com 出现时,message->headers->from 的日志相同被正确地设置为 noreply@domain.com 而没有添加 (Apache)。当然,这意味着这是 PHP 的错误,并且 PHP 没有正确使用 sendmail_from 值?

考虑到所有这些,我的问题是除了 mail() 函数之外,我如何在 PHP 中设置默认的 MIME 发件人(来自 header )? 我在上面的方法/配置中遗漏了什么,还是根本不可能?我很高兴跳出框框思考一下,因为这将有助于节省我们想要此功能的时间。

最佳答案

sendmail_from 被忽略

来自 http://www.php.net/manual/en/mail.configuration.php :

sendmail_from string
Which "From:" mail address should be used in mail sent from PHP under Windows. This directive also sets the "Return-Path:" header.

因此,因为您使用的是 CentOS LAMP 堆栈,不是 Windows,所以此设置将被忽略。

还有:

sendmail_path string
If set, smtp, smtp_port and sendmail_from are ignored and the specified command is executed.

所以 sendmail_from也被忽略,因为您正在使用 sendmail_path .

解决方案

您还可以传递 -F (大写 F)用空值从 header 中删除“发件人全名”:

通过 -f noreply@domain.com -F ""$additional_parameters mail() 的参数功能。

其他说明

-f参数

当您看到您的发件人地址发生变化时,Postfix 正在这样做。这是因为(在您的情况下)运行 Apache 的系统用户正在调用 sendmail二进制。这个二进制文件将使用 <system-user>@<hostname>作为发件人地址(除非 -f-r 参数另有说明)。

为了防止这种情况,sendmail应该用 -f <sender address> 调用.通过将其传递给 $additional_parameters mail() 的参数功能,或将其添加到 sendmail_path ini 设置。

但看起来你已经想通了:)

更好的解决方案

我建议您根本不要使用 ini 设置。相反,围绕 mail() 编写一个小类功能:

class Mailer
{
/**
* @var string
*/
private $fromEmail;

/**
* @var string
*/
private $fromName;

/**
* @param string $fromEmail
* @param string $fromName
*/
public function __construct($fromEmail, $fromName)
{
$this->fromEmail = $fromEmail;
$this->fromName = $fromName;
}

/**
* @param string $to
* @param string $subject
* @param string $body
* @param array $headers
* @return bool
*/
public function send($to, $subject, $body, array $headers = array())
{
$headers[] = sprintf('From: "%s" <%s>', $this->fromName, $this->fromEmail);
$parameters = sprintf('-f %s', $this->fromEmail);

return mail($to, $subject, $body, $headers, $parameters);
}
}

然后像这样使用它:

$mailer = new Mailer('noreply@domain.com', 'My Company');
$mailer->send('email@address.tld', 'Subject', 'Body');

这门课过于简单化了,但它应该让您基本了解如何消除 From: 的麻烦。 header 和 -f每次要发送电子邮件时的参数。

如果您使用依赖注入(inject)容器或注册表,您可以在应用程序的引导阶段配置/实例化此类,并在您想发送电子邮件时从容器/注册表中获取它:

$container->get('mailer')->send($to, $subject, $message);

或者使用注册表:

Registry::get('mailer')->send($to, $subject, $message);

第三方库

从长远来看,研究第 3 方库来发送电子邮件是值得的。我个人比较喜欢Swift Mailer .

关于php - 我怎样才能强制从 : header (envelope sender) in PHP without putting it in mail()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24183058/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com