dongou0524 2018-06-18 16:18
浏览 47
已采纳

在PHP和Localhost中发送电子邮件[重复]

This question already has an answer here:

i've searched for hours for a solution but i just don't get it. I'm fairly new to PHP, I'm doing a project where i need an email to be sent, the problem is that I can't figure how to do it. Others who had the same problem, fixed it by configuring the php.ini and the sendemail.ini

This is my current code for testing:

<?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!";
}

?>

I receive the "Mail sent successfully" but there is nothing on my inbox, not even on the spam folder. I also tried to use PHPMailer but (like i said) im fairly new to php and i don't get how to enable it on my code. What do you guys think?

</div>
  • 写回答

1条回答 默认 最新

  • douba4275 2018-06-18 16:25
    关注
    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 mailer library https://github.com/PHPMailer/PHPMailer

    follow following link to understand php mailer https://www.codexworld.com/send-html-email-php-gmail-smtp-phpmailer/

    directory structure

    -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)
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵