Heim  >  Artikel  >  php教程  >  php PEAR mail发送邮件实例

php PEAR mail发送邮件实例

WBOY
WBOYOriginal
2016-05-25 16:49:291133Durchsuche

phppear mail发送邮件实例--> 

<!doctype html> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="content-type" content="text/html; charset=gb2312" /> 
<title>php发送邮件</title> 
</head> 
<body> 
<table width="611" height="200" border="1"> 
  <tr> 
<td width="601"><form id="form1" name="form1" method="post" action="send.php"> 
  <table width="600" height="240" border="0" cellpadding="0" cellspacing="0"> 
<tr> 
  <td width="102" height="28">收件人地址</td> 
  <td width="213"><input name="to" type="text" id="to" /></td> 
  <td width="84">发送人地址</td> 
  <td width="201"><input name="from" type="text" id="from" value="cert@163.com" /></td> 
</tr> 
<tr> 
  <td height="33">发送人用户名</td> 
  <td><input name="name" type="text" id="username" value="cert" /></td> 
  <td>邮箱密码</td> 
  <td><input name="password" type="password" id="password" value="***" /></td> 
</tr> 
<tr> 
  <td height="27">smtp服务器</td> 
  <td><input name="smtp" type="text" id="smtp" value="smtp.163.com" /></td> 
  <td colspan="2">注:163邮箱smtp为: smtp.163.com</td> 
  </tr> 
<tr> 
  <td height="26">标题</td> 
  <td colspan="3"><input name="subject" type="text" id="subject" value="cert测试php发送邮件" size="50" /></td> 
  </tr> 
<tr> 
  <td height="69">内容</td> 
  <td colspan="3"><textarea name="content" cols="50" rows="6" id="content">计算机紧急响应组欢迎你! 
http://www.phprm.com 
组织网站即将进行改版</textarea></td> 
  </tr> 
<tr> 
 
  <td> </td> 
  <td align="right"><input type="submit" name="submit" value="发送" /></td> 
  <td> </td> 
  <td> </td> 
</tr> 
  </table> 
<p>说明:我用163的邮箱发给 163 或 126 的邮箱立刻就能收到。大家试试。</p> 
</form> 
</td> 
  </tr> 
</table> 
</body> 
</html> 
<?php
require_once &#39;mail.php&#39;;
$conf[&#39;mail&#39;] = array(
    &#39;host&#39; => &#39;smtp.126.com&#39;, //smtp服务器地址
    &#39;auth&#39; => true, //true表示smtp服务器需要验证,false不需要
    &#39;username&#39; => &#39;liangbowen&#39;, //用户名
    &#39;password&#39; => &#39;******&#39;
    //密码
    
);
//发送邮件
$headers[&#39;from&#39;] = &#39;liangbowen@126.com&#39;; //发信地址
$headers[&#39;to&#39;] = &#39;liangbowen@hotmail.com&#39;; //收信地址
$headers[&#39;subject&#39;] = &#39;test mail send by php bowen.mvbb.com&#39;; //邮件标题
$mail_object = & mail::factory(&#39;smtp&#39;, $conf[&#39;mail&#39;]);
//邮件正文
$body = "这是一封自己发给自己的邮件。";
$mail_res = $mail_object->send($headers[&#39;to&#39;], $headers, $body); //发送
if (pear::iserror($mail_res)) { //检测错误
    die($mail_res->getmessage());
} else {
    echo "send successful!";
}
?>


文章链接:

随便收藏,请保留本文地址!

Stellungnahme:
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
Vorheriger Artikel:php发送邮件代码 Nächster Artikel:php 发送邮件代码