如何开始使用 SwiftMailer

发布于 2024-09-13 19:25:29 字数 200 浏览 3 评论 0原文

我想使用 swiftmailer 将表单结果发送到 Gmail 帐户。

我是 php 新手(也是 ubuntu 新手),甚至在阅读文档时也处于(尴尬地)迷失的阶段。

问题:

a) 在哪里提取库?我把它放在我的桌面上。它不应该放在某个 apache 文件夹中吗?

b) 发送到 Gmail 收件箱的示例消息会是什么样子?

I wanna use swiftmailer to send the results of a form to a gmail account.

I'm new to php (and new to ubuntu), and in the stage of being (embarrasingly) lost even when reading the documentation.

Questions:

a) Where do I extract the library? I placed it on my desktop. Shouldn't it go in some apache folder?

b) How would a sample message sent to a gmail inbox would look like?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

清浅ˋ旧时光 2024-09-20 19:25:29

只要设置了权限,以便您的网络服务器可以读取该目录,您就可以将该库放在您喜欢的任何位置。因此,如果您的网络服务器从 /var/www/htdocs 提供页面,也许您应该将其放在 /var/www/swift 中。然后,当您在应用程序中需要该库时,您可以:

require_once '/var/www/swift/lib/swift_required.php';

然后您可以开始使用该库。有关更多信息,请查看文档以获取快速参考:
http://swiftmailer.org/docs/messages.html

As long as there are permissions set so your webserver can read the directory, you can put this library where ever you like. So if your webserver serves pages from /var/www/htdocs, maybe you should put this at /var/www/swift. Then when you require the library in your application, you can:

require_once '/var/www/swift/lib/swift_required.php';

Then you can start using the library. For more information, check out the docs for a quick reference at:
http://swiftmailer.org/docs/messages.html

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