如何在 ubuntu 9.04 上使用带有 postfix 的 Zend Mail
任何人都可以向我发送一个教程的链接,展示如何做到这一点?
我安装了 postfix 并且可以工作。
我认为我需要安装 zend 框架并在 php.ini 上设置 include_path 。但我无法安装 zend 框架,它总是返回错误。
谢谢。
Anyone could send me a link of a tutorial that show how to do it?
i got postfix installed and working.
i think that i need to install zend framework and set the include_path on php.ini. but i can't install zend framework it always return errors.
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要使用 Zend 类,您不需要遵循任何安装过程。唯一的要求是包含库的路径。
然后您可以
include('Zend/Mail.php')
并调用该类。For using a Zend class you don't need to follow any installation process. The only requirement is that the path to the library is included.
Then you can
include('Zend/Mail.php')
and call the class.