有关phpmailer的详细介绍及使用方法_PHP教程

WBOY
Freigeben: 2016-07-21 15:13:15
Original
995 Leute haben es durchsucht

第一,需要下载PHPMailer文件包phpmailer. http://phpmailer.sourceforge.net/
第二,确认你的服务器系统已经支持socket ,通过phpinfo();查看是否支持sockets(socket 是属于PHP扩展部分),如果显现为“enabled”,那就是支持了。
第三,把文件解压到你的web服务器目录下,调用类就可以了.
首先包含class.phpmailer.php,然后创建对象,设置参数,调用成员函数。

例1,做成函数方便调用

复制代码 代码如下:

    require("phpmailer/class.phpmailer.php");   
    function smtp_mail( $sendto_email, $subject, $body, $extra_hdrs, $user_name){   
        $mail = new PHPMailer();   
        $mail->IsSMTP();                  // send via SMTP   
        $mail->Host = "200.162.244.66";   // SMTP servers   
        $mail->SMTPAuth = true;           // turn on SMTP authentication   
        $mail->Username = "yourmail";     // SMTP username  注意:普通邮件认证不需要加 @域名   
        $mail->Password = "mailPassword"; // SMTP password   
        $mail->From = "yourmail@yourdomain.com";      // 发件人邮箱   
        $mail->FromName =  "管理员";  // 发件人   

        $mail->CharSet = "GB2312";   // 这里指定字符集!   
        $mail->Encoding = "base64";   
        $mail->AddAddress($sendto_email,"username");  // 收件人邮箱和姓名   
        $mail->AddReplyTo("yourmail@yourdomain.com","yourdomain.com");   
        //$mail->WordWrap = 50; // set word wrap 换行字数   
        //$mail->AddAttachment("/var/tmp/file.tar.gz"); // attachment 附件   
        //$mail->AddAttachment("/tmp/image.jpg", "new.jpg");   
        $mail->IsHTML(true);  // send as HTML   
        // 邮件主题   
        $mail->Subject = $subject;   
        // 邮件内容   
        $mail->Body = "  
      
      
      
      
      
    I love php
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!