超级简单的发送邮件程序_PHP教程

WBOY
Libérer: 2016-07-21 16:05:30
original
1129 Les gens l'ont consulté

最近做一个新闻系统,为了模仿各大网站的在线发信功能就写了这个小程序,希望对各位菜鸟兄弟有用。
    我没有给出一部分代码,只给出关键部分。其中shouxin代表收信人地址,shouren代表收信人姓名,jixin代表发信人地址,faren代表发信人姓名。id是前边传过来的参数,对你来说根本没什么用的。


if($shouxin=="")
{
echo "没有收件人的地址,无法寄出";
}else{
$to=explode(',',$shouxin);
$tocount=count($to);
$headers ="From:".$jixin."n";
$subject="收信" ;
$body ="你好。$shouren";
$body.="n";
$body.="你的朋友$faren";
$body.="推荐您给你一篇文章 http://127.0.01.1/myweb/biye/news/newsdetail.php?id=$id ";
$body.="n";
$body.="$content";
for($i=0;$i               if(mail($to[$i], $subject, $body,$headers))
          {
            echo "发送成功!";
            }else{
             echo " 发送失败,请重新发送。";
             exit();}
        }

}
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/315666.htmlTechArticle最近做一个新闻系统,为了模仿各大网站的在线发信功能就写了这个小程序,希望对各位菜鸟兄弟有用。 我没有给出一部分代码,只给出关...
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal