本文实例讲述了php使用pear自带的mail类库发邮件的方法。分享给大家供大家参考。具体如下:
这里用pear自带的mail类库发邮件,可以用pear install 命令来安装对应的库
body = "<a href='http://www.baidu.com/' target='_blank'>点我重新生成密码</a>";
sendmail_smtp("[email protected]",'测试',$body);
function sendmail_smtp($smtpemailto,$mailsubject,$mailbody){
//error_reporting(7);
require_once 'mail.php';
require_once 'mail/mime.php';
$from = '[email protected]';
$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;
}
}
希望本文所述对大家的php程序设计有所帮助。
评论列表:
发布于 3天前回复该评论
发布于 3天前回复该评论
发布于 3天前回复该评论
发布于 3天前回复该评论
发布于 2天前回复该评论
发布于 2天前回复该评论
发布于 2天前回复该评论
发布于 2天前回复该评论