相關(guān)關(guān)鍵詞
關(guān)于我們
最新文章
phpmailer綁定郵箱的實現(xiàn)方法

本文實例講述了phpmailer綁定郵箱的實現(xiàn)方法。分享給大家供大家參考,具體如下:
效果如下:
1.配置
<?php return array ( 'email_host' => 'smtp.aliyun.com', 'email_port' => '25', 'email_username' => 'diandodo@aliyun.com', 'email_password' => 'xxxxxx', 'email_from' => 'diandodo@aliyun.com', 'email_fromname' => '點多多', 'email_subject' => '助店寶商戶激活郵箱', 'email_body' => "尊敬的用戶{$username}您好: 您的激活碼為<font color='red'>{$code}</font>,請將激活碼輸入進行驗證! 激活碼有效期為6分鐘^_^", );