0

我正在使用我们的一个 Microsoft 365 帐户发送电子邮件。该帐户在 MS365 上设置了以下配置:

  • 显示名称:this should not be displayed
  • 电子邮件:example@domain.com

在我的代码中,我尝试使用(可以显示)发送电子邮件example@domain.com,但我不想显示帐户的默认显示名称,而是希望它说“ Some content relevant name”。

使用此示例代码时:

<?php

$transport = (new Swift_SmtpTransport('smtp.office365.com', 587, 'tls'))
    ->setUsername('your username')
    ->setPassword('your password');

$mailer = new Swift_Mailer($transport);

$message = (new Swift_Message('Wonderful Subject'))
    ->setFrom(['example@domain.com' => 'Some content relevant name'])
    ->setBody('Here is the message itself');

$result = $mailer->send($message);

电子邮件以显示名称到达this should not be displayed

使用 MS365 SMTP 发送电子邮件时如何设置自定义显示名称?

4

1 回答 1

0

我这边的错误,自定义显示名称适用于组织之外的每个人。

于 2021-11-12T10:10:51.020 回答