读者要求:1.熟悉php、2.熟悉cackphp。
cackephp框架中已有组件email.php,具体位置:cakephp/cake/libs/controller/components。现在先讲一下此组件基本的参数
to | 收件人地址(string) |
cc | 抄送人数组 |
bcc | 密件副本收件人数组(blind carbon copy) |
replyTo | 回信地址(string) |
from | 发送人地址(string) |
subject | 邮件标题(string) |
template | 邮件模板(保存于本地的app/views/elements/email/html/ 和 app/views/elements/email/text/) |
layout | 邮件使用的布局(保存于本地的app/views/layouts/email/html/ 和app/views/layouts/email/text/) |
lineLength | 自动换行长度, 默认为70。(integer) |
sendAs | 邮件发送格式 text, html 或者 both |
attachments | 附件路径(绝对或相对地址) |
delivery | 邮件发送方式(mail, smtp [需要下面的 smtpOptions设置] 和 debug) |
smtpOptions | smtp参数设置(port, host, timeout, username, password, client) |
发送邮件的关键代码如下:
其他地方调用此处是请使用$this->sendNewUserMail();如果要循环发送邮件再发送下封邮件时要使用$this->Email->reset()重置。
代码中文件的位置app/views/elements/email/html/simple_message.ctp