gpt4 book ai didi

php - 使用 gmail(windows) 从本地主机发送电子邮件

转载 作者:IT王子 更新时间:2023-10-29 00:18:11 24 4
gpt4 key购买 nike

我想使用本地主机中的 mail() 函数。我安装了 WAMP 和一个 Gmail 帐户。我知道 Gmail 的 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 )。

关于php - 使用 gmail(windows) 从本地主机发送电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4982821/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com