本文介绍下,php实现的一个邮件发送类,基于文本模板来发送邮件,挺不错的,有需要的朋友参考下吧。一个php email邮件发送类,可以构造简单的邮件格式,效果不错。代码:
/*** php email邮件发送类* 编辑:bbs.it-home.org*/class cls_email_module { function mailsend($tomail,$frommail,$subj,$message,$html=) { if($html) { $headers = mime-version: 1.0\r\n; $headers .= content-type: text/html; charset=iso-8859-1\r\n; $headers .=from:$frommail; } else { $headers .=from:$frommail; } $ssubject = $subj; $sbody = $message; // parsing body $body = $sbody; for($ptr = 0; $ptr