php利用smtp发送邮件

 

PHP : 5.6.8

email工具类下载地址:

     http://files.cnblogs.com/files/rhythmK/email.class.zip

 

发送邮件代码如下:

    

 require_once("email.class.php");

        $smtpServer="smtp.126.com";

        $smtpServerPort="25";

        $smtpUserMail="[email protected]";

        $mailTo="[email protected]";

        $user="wangkyx";

        $mailPwd="{发送邮箱密码}";

        $mailTitle="邮箱标题";

        $mailContent='<h1>测试邮件 001</h1>';

        // 邮件格式 (HTML/TXT)

        $mailType="HTML";

        // true表示是否身份验证

        $smtp=new \smtp($smtpServer,$smtpServerPort,true,$user,$mailPwd);

        // 是否显示调试信息

        $smtp->debug=false;

        // 返回 bool

        $state=$smtp->sendmail($mailTo,$smtpUserMail,$mailTitle,$mailContent,$mailType);

        var_dump($state);

 

你可能感兴趣的:(smtp)