在 zend 框架上通过 SMTP 发送电子邮件
$config = array('auth' => 'login',
'username' => '****@gmail.com',
'password' => '****',
'port' => '25',
'ssl' => 'tls');
$transport = new Zend_Mail_Transport_Smtp('smtp.googlemail.com', $config);
之后我该怎么办,我可以把正文和收件人地址放在哪里。
$config = array('auth' => 'login',
'username' => '****@gmail.com',
'password' => '****',
'port' => '25',
'ssl' => 'tls');
$transport = new Zend_Mail_Transport_Smtp('smtp.googlemail.com', $config);
what should i do after that, where can i put the body and the recipient address.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它在 的手册中进行了描述Zendframework
然后在其他地方实例化
Zend_Mail
,编写邮件并发送。Its described in the manual of Zendframework
Then somewhere else instanciate
Zend_Mail
, write your mail and send it.有关完整示例,请参阅文档(尽管 Zend 文档确实经常是“太好了)。
基于此处的评论:
See the documentation for full examples (although the Zend docs admittedly often aren't great).
Based on a comment here:
您的示例显示了一个空链接,因此它不会显示任何内容。
除非这是您以前在此处发布的修改后的示例?
当您运行它时,以下内容是否显示任何内容,如果不显示,您会得到什么。
Your example shows an empty link so it wont display anything.
Unless this is a modified example you used to post on here?
Does the following display anything when you run it, if not what do you get.