PHP 使用 SMTP發送郵件 gmail met problem

來源:互聯網
上載者:User
  1. <?php    
  2. include("class.phpmailer.php"); //匯入PHPMailer類別       
  3.       
  4. $mail= new PHPMailer(); //建立新物件        
  5. $mail->IsSMTP(); //設定使用SMTP方式寄信        
  6. $mail->SMTPAuth = true; //設定SMTP需要驗證        
  7. $mail->SMTPSecure = "ssl"; // Gmail的SMTP主機需要使用SSL連線   
  8. $mail->Host = "smtp.gmail.com"; //Gamil的SMTP主機        
  9. $mail->Port = 465;  //Gamil的SMTP主機的SMTP埠位為465埠。        
  10. $mail->CharSet = "big5"; //設定郵件編碼        
  11.       
  12. $mail->Username = "*********"; //設定驗證帳號        
  13. $mail->Password = "*********"; //設定驗證密碼        
  14.       
  15. $mail->From = XXX@XXX.XXX.XXX; //設定寄件者信箱        
  16. $mail->FromName = "測試人員"; //設定寄件者姓名        
  17.       
  18. $mail->Subject = "PHPMailer 測試信件"; //設定郵件標題        
  19. $mail->Body = "大家好,       
  20. 這是一封測試信件!       
  21. "; //設定郵件內容        
  22. $mail->IsHTML(true); //設定郵件內容為HTML        
  23. $mail->AddAddress("david@e-happy.com.tw", "茶米"); //設定收件者郵件及名稱        
  24.       
  25. if(!$mail->Send()) {        
  26. echo "Mailer Error: " . $mail->ErrorInfo;        
  27. } else {        
  28. echo "Message sent!";        
  29. }    
  30. ?> 
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.