使用php邮件http://php.net/manual/en/function.mail.php如果邮件发送正常则返回true。
但是我的网络主机发送速率是3000 /小时,服务器将在达到3000限制后存储450封电子邮件(这是3000限制的15%)。
我想要确认的是,当php邮件功能返回true时,它是否应对这些设置。邮件服务器是否向邮件功能确认它发送了OK或邮件功能是否为“盲目”?
邮件服务器是否对该功能说,限制已发送的电子邮件未发送,因此返回false?
答案 0 :(得分:1)
使用PHP附带的mail()
函数不是最佳解决方案。使用SWIFTMAILER http://swiftmailer.org/这将用作SMTP服务:
将swiftmailer用作SMTP服务时的代码示例:
require_once 'lib/swift_required.php';
// Create the Transport
$transport = Swift_SmtpTransport::newInstance('smtp.example.org', 25)
->setUsername('your username')
->setPassword('your password')
;
/*
You could alternatively use a different transport such as Sendmail or Mail:
// Sendmail
$transport = Swift_SendmailTransport::newInstance('/usr/sbin/sendmail -bs');
// Mail
$transport = Swift_MailTransport::newInstance();
*/
// Create the Mailer using your created Transport
$mailer = Swift_Mailer::newInstance($transport);
// Create a message
$message = Swift_Message::newInstance('Wonderful Subject')
->setFrom(array('john@doe.com' => 'John Doe'))
->setTo(array('receiver@domain.org', 'other@domain.org' => 'A name'))
->setBody('Here is the message itself')
;
// Send the message
$result = $mailer->send($message);