在PHP和Localhost中发送电子邮件

时间:2018-06-18 16:18:43

标签: php email xampp localhost

我已经搜索了几个小时的解决方案,但我只是没有得到它。 我是一个相当陌生的PHP,我正在做一个我需要发送电子邮件的项目,问题是我无法知道如何去做。 其他有同样问题的人通过配置php.ini和sendemail.ini

修复了它

这是我目前的测试代码:

<?php

$subject="Hi There!!";
$to="mygmail@gmail.com";
$body="This is a demo email sent using PHP on XAMPP";
if (mail($to,$subject,$body)){
 echo "Mail sent successfully!";
}
else{
 echo "Mail not sent!";
}

?>

我收到&#34;邮件已成功发送&#34;但我的收件箱中没有任何内容,甚至垃圾邮件文件夹也没有。 我也尝试使用PHPMailer但是(就像我说的)我是相当新的PHP,我不知道如何在我的代码上启用它。 你们觉得怎么样?

1 个答案:

答案 0 :(得分:0)

require 'PHPMailer/PHPMailer.php';
require 'PHPMailer/Exception.php';
require 'PHPMailer/OAuth.php';
require 'PHPMailer/POP3.php';
require 'PHPMailer/SMTP.php';

$mail = new PHPMailer;

// SMTP configuration
$mail->isSMTP();
$mail->Host = 'smtp.example.com';
$mail->SMTPAuth = true;
$mail->Username = 'user@example.com';
$mail->Password = '******';
$mail->SMTPSecure = 'tls';
$mail->Port = 587;

$mail->setFrom('info@example.com', 'CodexWorld');
$mail->addReplyTo('info@example.com', 'CodexWorld');

// Add a recipient
$mail->addAddress('john@gmail.com');

// Add cc or bcc 
$mail->addCC('cc@example.com');
$mail->addBCC('bcc@example.com');

// Email subject
$mail->Subject = 'Send Email via SMTP using PHPMailer';

// Set email format to HTML
$mail->isHTML(true);

// Email body content
$mailContent = "<h1>Send HTML Email using SMTP in PHP</h1>
    <p>This is a test email has sent using SMTP mail server with PHPMailer.</p>";
$mail->Body = $mailContent;

// Send email
if(!$mail->send()){
    echo 'Message could not be sent.';
    echo 'Mailer Error: ' . $mail->ErrorInfo;
}else{
    echo 'Message has been sent';
}

php邮件库 https://github.com/PHPMailer/PHPMailer

按照以下链接了解php邮件程序 https://www.codexworld.com/send-html-email-php-gmail-smtp-phpmailer/

目录结构

-root (your proj root directory from where your php file runs)
  -index.php (file with above code)
  -PHPMailer(folder contain mailer library)
     -php mailer files (go to git repo, download and copy all files from src folder)