php – 发送电子邮件从localhost与gmail(windows)

栏目: PHP · 发布时间: 6年前

内容简介:我想使用我的localhost的mail()函数.我有WAMP安装和一个Gmail帐户.我知道SMTP的SMTP是smtp.gmail.com,端口是465.我需要在WAMP中配置,所以我可以使用mail()函数?http://stackoverflow.com/questions/4982821/send-email-from-localhost-with-gmailwindows

我想使用我的localhost的mail()函数.我有WAMP安装和一个Gmail帐户.我知道SMTP的SMTP是smtp.gmail.com,端口是465.我需要在WAMP中配置,所以我可以使用mail()函数?

Ayush的答案非常有用,低于简单的方法

1)下载 PHPMailer

2)提取到 php 项目中的文件夹,并将其重命名为phpmailer

3)创建gmail-sample.php并粘贴以下代码:

<?php
    require("phpmailer/class.phpmailer.php");
    $mail = new PHPMailer();

    // ---------- adjust these lines ---------------------------------------
    $mail->Username = "your.username@gmail.com"; // your GMail user name
    $mail->Password = "your-gmail-password"; 
    $mail->AddAddress("friends.email@domain.com"); // recipients email
    $mail->FromName = "your name"; // readable name

    $mail->Subject = "Subject title";
    $mail->Body    = "Here is the message you want to send to your friend."; 
    //-----------------------------------------------------------------------

    $mail->Host = "ssl://smtp.gmail.com"; // GMail
    $mail->Port = 465;
    $mail->IsSMTP(); // use SMTP
    $mail->SMTPAuth = true; // turn on SMTP authentication
    $mail->From = $mail->Username;
    if(!$mail->Send())
        echo "Mailer Error: " . $mail->ErrorInfo;
    else
        echo "Message has been sent";
    ?>

4)从浏览器发送邮件(例如 http://localhost/your-project/gmail-sample.php ).

http://stackoverflow.com/questions/4982821/send-email-from-localhost-with-gmailwindows


以上所述就是小编给大家介绍的《php – 发送电子邮件从localhost与gmail(windows)》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Developer's Guide to Social Programming

Developer's Guide to Social Programming

Mark D. Hawker / Addison-Wesley Professional / 2010-8-25 / USD 39.99

In The Developer's Guide to Social Programming, Mark Hawker shows developers how to build applications that integrate with the major social networking sites. Unlike competitive books that focus on a s......一起来看看 《Developer's Guide to Social Programming》 这本书的介绍吧!

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器