您好,欢迎访问一九零五行业门户网

用pear自带的mail类库发邮件 - PHP

php代码
body = "<a href='http://www.baidu.com/' target='_blank'>点我重新生成密码</a>"; sendmail_smtp("xxxxxxxx@qq.com",'测试',$body); function sendmail_smtp($smtpemailto,$mailsubject,$mailbody){ //error_reporting(7); require_once 'mail.php'; require_once 'mail/mime.php'; $from = 'admin@xxx.com'; $to = $smtpemailto; $password = 'xxxxxx'; $mail_config=array( "host"=>"smtp.ym.163.com", "port"=>25, "auth"=>true, "username"=>$from, "password"=>$password, "from"=>$from, ); $hdrs = array( 'from'=>$from, 'to' => $to, //收信地址 'subject'=>$mailsubject ); $mime = new mail_mime(); //$mime->settxtbody($text); //添加附件 //$mime->addhtmlimage('php.gif','image/gif','12345',true); $mime->_build_params['html_charset'] = "utf-8";//设置编码格式 $mime->_build_params['head_charset'] = "utf-8";//设置编码格式 $mime->sethtmlbody($mailbody); $body = $mime->get(); $hdrs = $mime->headers($hdrs); $mail = mail::factory('smtp',$mail_config); $succ = $mail->send($to,$hdrs,$body); if (pear::iserror($succ)) { //echo 'email sending failed: ' . $succ->getmessage(); $err = 'email sending failed: ' . $succ->getmessage(); $content = $to."\\t".date('y-m-d h:i:s')."\\t ".$err." \\r\\n" ; } else { //$content = $to."\\t".date('y-m-d h:i:s')."\\t email sent succesfully \\r\\n" ; return true; } }
其它类似信息

推荐信息