gpt4 book ai didi

php - symfony smtp - 无法与主机建立连接

转载 作者:太空宇宙 更新时间:2023-11-04 05:16:28 25 4
gpt4 key购买 nike

我正在尝试通过 symfony 发送消息 (smtp)。

$ transport = \ Swift_SmtpTransport ('my_host', 587, 'ssl')
-> SetUserName ('my_username')
-> SetPassword ('my_password');

我收到消息 [无法与主机建立连接]访问数据当然是正确的,例如在 Thunderbird 中提供相同的数据一切正常。

最初,我以为脚本中有错误,但脚本工作正常(给不同的服务器一切正常)。

是不是服务器配置有问题?谢谢。马尔辛

最佳答案

好吧,你可以看到它找到了文档(我在谷歌中输入了“symfony发送电子邮件”;))https://symfony.com/doc/master/email.html

$message = (new \Swift_Message('Hello Email'))
->setFrom('send@example.com')
->setTo('recipient@example.com')
->setBody(
$this->renderView(
// templates/emails/registration.html.twig
'emails/registration.html.twig',
array('name' => $name)
),
'text/html'
)
;

//then use the mailer service to send it
$this->get('mailer')->send($message);

swiftmailer 的配置位于配置文件中,如下所述: https://symfony.com/doc/current/reference/configuration/swiftmailer.html

关于php - symfony smtp - 无法与主机建立连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48497729/

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