你可以利用XPertMailer来发送MIME类型的邮件如text,HTML,含图片的HTML页面,附件等。支持Cc和Bcc功能。
示例代码:
<?phpdefie('DISPLAY_XPM4_ERRORS',true);//displayXPM4errorsrequire_oce'/path-to/MAIL.php';//pathto'MAIL.php'filefromXPM4package$m=ewMAIL;//iitializeMAILclass$m->From('userame@myaddress.et');//setfromaddress$m->AddTo('cliet@destiatio.et');//addtoaddress$m->Subject('HelloWorld!');//setsubject$m->Text('Textmessage.');//settextmessage//coecttoMTAserver'smtp.hostame.et'port'25'withautheticatio:'userame'/'password'$c=$m->Coect('smtp.hostame.et',25,'userame','password')ordie(prit_r($m->Result));//sedmailrelayusigthe'$c'resourcecoectioecho$m->Sed($c)?'Mailset!':'Error!';$m->Discoect();//discoectfromserverprit_r($m->History);//optioal,fordebuggig?>










评论