溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么使用Yii框架發(fā)送郵件

發(fā)布時間:2020-07-28 10:12:17 來源:億速云 閱讀:192 作者:Leah 欄目:編程語言

怎么使用Yii框架發(fā)送郵件?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

首先使用Composer安裝“yiisoft/yii2-swiftmailer”擴展;

php composer require --prefer-dist yiisoft/yii2-swiftmailer

然后配置mailer中參數;

return [ 
    //.... 
    'components' => [ 
        'mailer' => [ 
            'class' => 'yii\swiftmailer\Mailer', 
            'viewPath' => '@common/mail', 
            // send all mails to a file by default. You have to set 
            // 'useFileTransport' to false and configure a transport 
            // for the mailer to send real emails. 
            'useFileTransport' => false, 
            'transport' => [ 
                'class' => 'Swift_SmtpTransport', 
                'host' => 'smtp.163.com', 
                'username' => '***@163.com', 
                'password' => '******', 
                'port' => '25', 
                'encryption' => 'tls', 
            ], 
            'messageConfig'=>[ 
                'charset'=>'UTF-8', 
                'from'=>['***@163.com'=>'白狼棧'] 
            ], 
        ], 
    ], 
];

接著調用該代碼“Yii::$app->mailer”獲取到mailer對象;

$mail= Yii::$app->mailer->compose();

最后設置郵件信息即可。

$mail= Yii::$app->mailer->compose(); 
$mail->setTo('***@qq.com'); //要發(fā)送給那個人的郵箱 
$mail->setSubject("郵件主題"); //郵件主題 
$mail->setTextBody('測試text'); //發(fā)布純文字文本 
$mail->setHtmlBody("測試html text"); //發(fā)送的消息內容 
var_dump($mail->send());

關于怎么使用Yii框架發(fā)送郵件問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業(yè)資訊頻道了解更多相關知識。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

yii
AI