Hii我使用phpmailer发送邮件工作正常,但在蛋糕php它不工作。 请查看配置
对于PhpMailer:
$mail = new PHPMailer;
$mail->isSMTP();
$mail->SMTPDebug = 2;
$mail->Debugoutput = 'html';
$mail->SMTPSecure = false;
$mail->SMTPAuth = false;
$mail->Host = "localhost";
$mail->Port = 25;
$mail->IsHTML(true);
$mail->Username = "order@domain.in";
$mail->Password = "password";
对于CakePhp:
public $smtp = array(
'transport' => 'Smtp',
'from' => array('order@domain.in' => 'My domain'),
'host' => 'localhost',
'port' => 25,
'timeout' => 30,
'username' => 'order@domain.in',
'password' => 'password',
//'client' => null,
//'log' => false,
);
我发现以下事情正在为Phpmailer做这个工作。
$mail->SMTPSecure = false;
$mail->SMTPAuth = false;
请任何人帮助我在cakephp中 SMTPSecure 和 SMTPAuth 的替代方案
答案 0 :(得分:2)
尝试将上下文中的SSL参数作为数组传递。
public $SendMail = array(
'host' => 'smtp.host.com',
'port' => 587,
'username' => 'username@domain.com',
'password' => 'password',
'transport' => 'Smtp',
'SMTPSecure' => 'tls',
'tls' => true,
'context'=>array('ssl' => array(
'verify_peer' => false,
'verify_peer_name' => false,
'allow_self_signed' => true
)),
);