yii动态配置smtp发送邮件

dynamic configure smtp send mail in yii

我在 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 是模型的名称,包括管理员 smtp 邮件信息)

我敢打赌这是你的问题:$mail->IsSMTP = trueIsSMTP 是一种方法,您正在为其分配一个值。该名称具有误导性,因为它实际上指示邮件程序使用 smtp。尝试 $mail->IsSMTP()$mail->Mailer = 'smtp'。否则我认为你走在正确的轨道上。