我在amazon托管EC2上配置了windows server 2012。我在localhost上配置了PHP邮件程序api,但是当我在服务器上部署此应用程序时,它无法运行。我在在线服务器上使用电子邮件时无法发送电子邮件。我允许在亚马逊Ec2实例设置上使用TCP 25端口,并允许在窗口中的防火墙上进行入站和出站规则。为什么电子邮件不发送?
答案 0 :(得分:1)
正如phpmailer页面所述:
至少你需要class.phpmailer.php。如果您使用的是SMTP,则需要 class.smtp.php ,如果您在SMTP之前使用POP,则需要 class.pop3.php 强>
所以我的猜测是你需要根据你的服务器配置你的smtp。我将在下面为phpmailer提供他们的示例:
$mail = new PHPMailer;
//$mail->SMTPDebug = 3; // Enable verbose debug output
$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