我在http://www.yiiframework.com/extension/smtp-mail/的Yii中使用SMTP PHPMailer Extensions,并通过在Controller中创建一个函数sentMail成功发送邮件。但总体而言,它需要我在main / config.php中配置如下:
'Smtpmail'=>array(
'class'=>'application.extensions.smtpmail.PHPMailer',
'Host'=>"smtp.gmail.com",
'Username'=>'your@gmail.com',
'Password'=>'password here',
'Mailer'=>'smtp',
'Port'=>587,
'SMTPAuth'=>true,
'SMTPSecure' => 'tls',
),
如何从数据库获取所有配置以设置SMTP?我曾尝试写入函数init()和_constructor(),但它不起作用。我甚至在Controller中配置函数mailSend,如下所示:
public function mailsend($to, $from = '', $from_name, $subject, $message, $cc = array(), $attachment = array()) {
$mail = Yii::app()->Smtpmail;
$mail->Host = Smtpconfig::model()->findByPk(1)->host;
$mail->Username = Smtpconfig::model()->findByPk(1)->username;
$mail->Password = Smtpconfig::model()->findByPk(1)->matkhau;
$mail->IsSMTP = true;
$mail->Port = Smtpconfig::model()->findByPk(1)->port;
$mail->SMTPSecure = Smtpconfig::model()->findByPk(1)->phuongthuc;
$mail->SetFrom($from, $from_name);
$mail->Subject = $subject;
$mail->MsgHTML($message);
$mail->AddAddress($to, "");
$mail->CharSet = "utf-8";
// Add CC
if (!empty($cc)) {
foreach ($cc as $email) {
$mail->AddCC($email);
}
}
// Add Attchments
if (!empty($attachment)) {
foreach ($attachment as $attach) {
$mail->AddAttachment($attach);
}
}
if (!$mail->Send()) {
return false; // Fail echo "Mailer Error: " . $mail->ErrorInfo;
} else {
return true; // Success
}
}
但也不行。 (Smtpconfig是模型的名称,包括admin smtp邮件信息)
答案 0 :(得分:1)
我敢打赌这是你的问题:$mail->IsSMTP = true
。 IsSMTP
是一种方法,您可以为其分配值。该名称具有误导性,因为它实际上指示邮件程序使用smtp。试试$mail->IsSMTP()
或$mail->Mailer = 'smtp'
。否则我认为你正走在正确的轨道上。