phpMailer實現傳送郵件功能

2021-05-26 12:05:51 字數 1139 閱讀 2138

require_once 'phpmailer/class.phpmailer.php';

require_once 'phpmailer/class.smtp.php';

$mname = $this->_getparam('mname');

$cname = $this->_getparam('cname');

$email = $this->_getparam('email'); 

$phone = $this->_getparam('phone');       

$to = '[email protected]';

$toname = 'test';

$status = 1;

$subject = 'request a callback';

$message = "your name: $mname\ncompany name: $cname\nemail: $email\nphone number: $phone\nwebsite name: $wname\nwhen would you like to be contacted: $contacttime\n";

$mail = new phpmailer();

$mail->charset = "utf-8";

$mail->issmtp();

$mail->host ='smtp.gmail.com';

$mail->smtpauth = true;

$mail->port = 465;

$mail->smtpsecure ="ssl";

$mail->username ='bloshnewmedia';

$mail->password ='*****';

$mail->from = '[email protected]';

$mail->fromname ='blosh';

$mail->wordwrap = 70;

$mail->subject = $subject;

$mail->body = $message;

$mail->addaddress($to, $toname); 

if(!$mail->send()) else

echo $status;

phpmailer 實現傳送郵件

在註冊的時候,常常會用到郵件驗證,一直想弄明白這是怎麼實現的,記得2年前曾經試過這個問題,沒有實現,今天睏到不行的時候開始決定搞明白這個,然後,然後就出來了。issmtp 使用smtp方式傳送 mail host smtp.qq.com 您的企業郵局網域名稱 mail smtpauth true 啟...

PHPMailer實現PHP郵件傳送

2.解壓 從中取出class.phpmailer.php 和 class.smtp.php 放到你的專案的資料夾,因為我們等下會引用到它們.3.建立傳送郵件的函式,其中你需要配置smtp伺服器 function postmail to,subject body else 4.使用函式 postmai...

PHPMailer 郵件傳送

一般有兩個檔案,左邊的資料夾是包含class類檔案等,右邊就是傳送配置檔案 require phpmailer class.phpmailer.php mail new phpmailer mail issmtp mail charset utf 8 mail host smtp.qq.com 這裡...