我在hostgator服务器上设置了一个cron作业,返回值为1(已发送电子邮件),但实际上并未发送电子邮件。当我在浏览器中手动调用php文件时,会发送电子邮件。如果通过cron运行则不会。
本月早些时候,我将我的网站从hostgator上的一台服务器移动到另一台服务器(在hostgator上),因此我可以获得SSL和专用IP地址。自移动站点以来,对于发送电子邮件的部分,cron作业正常除了(即数据库功能正常)。我已经联系了hostgator技术支持,但他认为问题出在我的代码中。
认为我的服务器信息可能不正确,我转而使用smtp.gmail.com并使用gmail帐户发送邮件,但这也无效。请帮忙!
cron作业设置如下:
* 7 * * * /opt/php56/bin/php /home/user/public_html/somefolder/sendmailcron.php
(测试时,我将其更改为每2分钟运行一次:* / 2 * * * *)
这是sendmailcron.php脚本:
<?php
$now = date("Y-m-d H:i:s");
$msgcontent = [];
$msgcontent['email'] = "recipient@example.com";
$msgcontent['name'] = "Recipient Name";
$msgcontent['textpart'] = "This is the text version of the email body.";
$msgcontent['htmlpart'] = "<p>This is the <strong>HTML</strong> version of the email body.</p>";
$msgcontent['subject'] = "Test email sent at " . $now;
$result = sendMyMail($msgcontent, "HTML");
exit();
function sendMyMail($msgcontent, $format="HTML") {
require_once '/home/user/public_html/somefolder/swiftmailer/lib/swift_required.php';
$result = 0;
$subject = $msgcontent['subject'];
$email = $msgcontent['email'];
if (strlen($email) == 0) {
return 0;
}
$name = $msgcontent['name'];
$emailbody = $msgcontent['textpart'];
$emailpart = $msgcontent['htmlpart'];
switch($format) {
case "TEXT":
$msgformat = 'text/plain';
break;
case "HTML":
$msgformat = 'text/html; charset=UTF-8';
break;
default:
$msgformat = 'text/html';
break;
}
$adminemailaddress = "me@mydomain.com";
$adminemailpwd = 'myadminpwd';
$sendername = 'My Real Name';
$transport = Swift_SmtpTransport::newInstance('mygator1234.hostgator.com', 465, "ssl")
->setUsername($adminemailaddress)
->setPassword($adminemailpwd)
;
$mailer = Swift_Mailer::newInstance($transport);
// Create the message
if($format == "TEXT") {
$message = Swift_Message::newInstance($subject)
->setFrom(array($adminemailaddress => $sendername))
->setTo(array($email => $name))
->setBody($emailbody)
->setContentType($msgformat)
;
}
else {
$message = Swift_Message::newInstance($subject)
->setFrom(array($adminemailaddress => $sendername))
->setTo(array($email => $name))
->setBody($emailpart)
->setContentType($msgformat)
;
}
//This is where we send the email
try {
$result = $mailer->send($message); //returns the number of messages sent
} catch(\Swift_TransportException $e){
$response = $e->getMessage() ;
}
return $result; //will be 1 if success or 0 if fail
}
?>
返回值始终为1,但不会发送电子邮件。
任何建议都将不胜感激!
答案 0 :(得分:0)
您的cron作业使用的浏览器使用的php.ini配置文件与浏览器不同。
尝试通过禁用safe_mode
来运行cron作业,如下所示:
/opt/php56/bin/php -d safe_mode=Off /home/user/public_html/somefolder/sendmailcron.php
并检查电子邮件是否已发送。