通过 smtp 服务器发送电子邮件

发布于 2024-10-19 01:20:02 字数 413 浏览 3 评论 0原文

可能的重复:
使用 PHP 通过 Gmail SMTP 发送电子邮件

您好,

我正在开发一个网站,使用php的mail()函数发送电子邮件。然而,由于服务器出现一些问题,电子邮件无法正确发送。由于这个原因我想使用gmail服务器发送电子邮件。我如何实现 php 脚本以使用 smtp 服务器身份验证发送电子邮件?我还了解到它使用 pear 电子邮件包来发送电子邮件。我如何知道 pear 已安装在我的远程服务器上。服务器不允许我查看 php info()?请帮忙...

Possible Duplicate:
Sending email through Gmail SMTP using PHP

Hi,

I am working on a site, that uses mail() function of php to send emails. However the emails are not delivered properly as the server has got some problems. I want to use gmail server to send emails for this reason. How can i implement the php script to send emails using smtp server authentication? Also i have learnt that it uses pear package for email to send emails. How can I know that pear is installed on my remote server. The server doenot allow me to view php info()? Please help...

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

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

发布评论

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

评论(3

一向肩并 2024-10-26 01:20:02

我使用 Pear Mail 与 SMTP 非常简单,您可以请参阅一些示例

$_mailbox        =   Mail::factory('smtp', array( 
  'host'         => 'smtp.gmail.com', 
  'auth'         =>  FALSE, 
  'username'     => '[email protected]', 
  'password'     => 'smtp_password', 
  'persist'      =>  FALSE  )); 

抱歉,我没有阅读所有问题,您无法知道服务器中是否有 Pear,为什么不发送电子邮件或票证来支持?

I use Pear Mail with SMTP is very easy, and you can see some examples

$_mailbox        =   Mail::factory('smtp', array( 
  'host'         => 'smtp.gmail.com', 
  'auth'         =>  FALSE, 
  'username'     => '[email protected]', 
  'password'     => 'smtp_password', 
  'persist'      =>  FALSE  )); 

Sorry i don'r read all question, you can't know if you have pear in server, why not send email or ticket to support ?

小情绪 2024-10-26 01:20:02

PHPMailer 是一个非常好的发送电子邮件的 PHP 库。您只需将文件安装到您自己的区域即可,无需管理员操作。

PHPMailer is a very good PHP library to send e-mails. You may just install the files into your own area, no administrator action is necessary.

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