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)》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

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

PHP for the World Wide Web, Second Edition (Visual QuickStart Gu

PHP for the World Wide Web, Second Edition (Visual QuickStart Gu

Larry Ullman / Peachpit Press / 2004-02-02 / USD 29.99

So you know HTML, even JavaScript, but the idea of learning an actual programming language like PHP terrifies you? Well, stop quaking and get going with this easy task-based guide! Aimed at beginning ......一起来看看 《PHP for the World Wide Web, Second Edition (Visual QuickStart Gu》 这本书的介绍吧!

随机密码生成器
随机密码生成器

多种字符组合密码

SHA 加密
SHA 加密

SHA 加密工具

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具