使用phpmailer发送邮件时,它还会同时发送github,以及如何删除它?

时间:2019-01-28 12:36:04

标签: php phpmailer

我可以用phpmailer完美地发送电子邮件,但是当我在gmail中选中“显示原始邮件”时,它表明我的发件人地址中有一个github链接,例如波纹管:

From:   Tamjid Hasan <tamjid8@gmail.com> Using PHPMailer 6.0.6 (https://github.com/PHPMailer/PHPMailer) 

我想知道如何删除该github链接。任何人都可以帮助我。

1 个答案:

答案 0 :(得分:1)

您在其中看到的文本来自邮件的X-Mailer标头。在PHPMailer中,可以使用$mail->XMailer = "Your awesome mailer"进行定义。

如果检查PHPMailer代码的源代码,则会发现以下内容:

/**
 * What to put in the X-Mailer header.
 * Options: An empty string for PHPMailer default, whitespace for none, or a string to use.
 *
 * @var string
 */
public $XMailer = '';

这意味着您还可以将XMailer设置为' '以禁用标题。