PHP头条
热点:

网上找到的两个PHP发送邮件的例子,很不错,贴出来给初学者参考吧不知道是否有兄弟曾贴过,呵呵2


Advanced Example Here we will show the full capabilities of the PHP mail function. PHP Code: "; $recipient = "Kris Arndt ,npl@nucleus.com"; $subject = "Testing the mail function"; $message = "Hello! This is the body of the message. "; $extra = "From: kris@phpworld.com Reply-To: karn@nucleus.com "; mail ($recipient, $subject, $message, $extra); echo "Sending mail..."; echo ""; ?> We send an email to two people this time, by putting two email addresses in the recipient field and separating them with commas. The fourth parameter holds extra headers for the email. We specify who the email was from and who the recipient should reply to. When entering multiple headers, separate them with the line feed and new line combination ( ).

www.phpzy.comtrue/phprm/37715.htmlTechArticle网上找到的两个PHP发送邮件的例子,很不错,贴出来给初学者参考吧不知道是否有兄弟曾贴过,呵呵2 Advanced Example Here we will show the full capabilities of the PHP mail function. PHP Code: ; $recipient...

相关文章

    暂无相关文章

PHP之友评论

今天推荐