gpt4 book ai didi

php - 使用 Yahoo SMTP 在 PHP 中发送邮件

转载 作者:可可西里 更新时间:2023-10-31 23:11:37 27 4
gpt4 key购买 nike

如何使用 PHP 通过 Yahoo! 的 SMTP 服务器发送电子邮件?

最佳答案

你应该使用类似 Swift Mailer 的东西或 PHPMailer .以下示例适用于 Swift:

$message = Swift_Message::newInstance()
->setSubject('Your subject')
->setFrom(array('john@doe.com' => 'John Doe'))
->setTo(array('receiver@domain.org', 'other@domain.org' => 'A name'))
->setBody('Here is the message itself')
->addPart('<q>Here is the message itself</q>', 'text/html')
;

$transport = Swift_SmtpTransport::newInstance('smtp.mail.yahoo.com', 465, 'ssl')
->setUsername('your username')
->setPassword('your password')
;

$mailer = Swift_Mailer::newInstance($transport);

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

关于php - 使用 Yahoo SMTP 在 PHP 中发送邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3512021/

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