我正在尝试学习PHPMailer,但我不明白它为什么需要电子邮件地址和密码。
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'smtp1.example.com;smtp2.example.com'; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'user@example.com'; // SMTP username
$mail->Password = 'secret'; // SMTP password
$mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 587; // TCP port to connect to
它不是来自个人电子邮件,而是来自该网站。我应该把什么电子邮件放在这里以及为什么?
答案 0 :(得分:0)
电子邮件地址是发送电子邮件的地址。需要身份验证才能发送邮件的SMTP服务器需要用户名和密码。
答案 1 :(得分:0)
电子邮件的工作方式是第1方有一个电子邮件帐户,用于向第2方发送邮件。第1方可以是网站,个人,脚本或其他内容,但仍需要有电子邮件帐户能够发送电子邮件。
这是SMTP(简单邮件传输协议)has been defined的方式,您需要按照该协议的定义来传递邮件。
答案 2 :(得分:0)
没有必要提供密码 -
<?php
require("class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host = "smtp.example.com"; // SMTP server
$mail->From = "example@gmail.com";
$mail->AddAddress("example@gmail.com");
$mail->Subject = "First PHPMailer Message";
$mail->Body = "Hi! \n\n This is my first e-mail sent through PHPMailer.";
$mail->WordWrap = 50;
if(!$mail->Send()) {
echo 'Message was not sent.';
echo 'Mailer error: ' . $mail->ErrorInfo;
} else {
echo 'Message has been sent.';
}
?>