你可以利用XPertMailer来发送MIME类型的邮件如text,HTML,含图片的HTML页面,附件等。支持Cc和Bcc功能。
示例代码:
<?phpdefine('DISPLAY_XPM4_ERRORS',true);//displayXPM4errorsrequire_once'/path-to/MAIL.php';//pathto'MAIL.php'filefromXPM4package$m=newMAIL;//initializeMAILclass$m->From('username@myaddress.net');//setfromaddress$m->AddTo('client@destination.net');//addtoaddress$m->Subject('HelloWorld!');//setsubject$m->Text('Textmessage.');//settextmessage//connecttoMTAserver'smtp.hostname.net'port'25'withauthentication:'username'/'password'$c=$m->Connect('smtp.hostname.net',25,'username','password')ordie(print_r($m->Result));//sendmailrelayusingthe'$c'resourceconnectionecho$m->Send($c)?'Mailsent!':'Error!';$m->Disconnect();//disconnectfromserverprint_r($m->History);//optional,fordebugging?>
评论