考虑通用性原因,目前已经停止单独使用此类,也不建议在项目里单独使用邮件发送类,而是使用用户中心的API通过统一的邮件队列进行发送。
户中心的API文件是:pub_user_api.php
其中发邮件的方法为:
-
-
-
-
-
-
-
-
-
-
- public function send_mail( $to, $subject, $body, $app='', $level=1, $failed_resend=0 )
- {
- $rs = $this->_call_api_method('sendMail', array('to'=>$to, 'subject'=>$subject, 'body'=>$body, 'app'=>'915',
- 'level'=>$level, 'failed_resend'=>$failed_resend), 'post' );
- return $rs;
- }
使用方法:
$pua = new pub_user_api('', '', false);
$pua->send_mail( $to, $subject, $body, 'wo');
其中 app ID 可以向相关管理人员索取。
|