如何在 ubuntu 9.04 上使用带有 postfix 的 Zend Mail

发布于 2024-11-29 07:18:20 字数 153 浏览 2 评论 0原文

任何人都可以向我发送一个教程的链接,展示如何做到这一点?

我安装了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅唱ヾ落雨殇 2024-12-06 07:18:20

要使用 Zend 类,您不需要遵循任何安装过程。唯一的要求是包含库的路径。

$path = '/path/to/library';
// $path is where you have the /Zend folder
set_include_path(get_include_path() . PATH_SEPARATOR . $path);

然后您可以 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.

$path = '/path/to/library';
// $path is where you have the /Zend folder
set_include_path(get_include_path() . PATH_SEPARATOR . $path);

Then you can include('Zend/Mail.php') and call the class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文