嗨,我将通过 smtp 发送带有 zend 邮件的普通电子邮件。它工作正常。但“发件人”必须,但发件人电子邮件应如下所示:
$mail->setFrom('firt-studio@example-test.com', 'firt-studio@example-test.com');
我的目标是在电子邮件程序中有类似的东西:
"firt-studio@example-test.com" <firt-studio@example-test.com>
但我只看到这个:
<firt-studio@example-test.com>
或类似的东西
"firtstudio@example-test.com" <firt-studio@example-test.com>
结果:
"firtstudio@" <firt-studio@example-test.com>
我需要全名。如何?