从GMAIL SMTP服务器使用PHP发送电子邮件/它不发送

时间:2020-07-29 15:34:58

标签: php email smtp gmail

我想从PHP脚本发送电子邮件。我在Ubuntu机器上安装了Apache服务器,仅此而已。我准备了一个index.html文件:

<?php 
if(isset($_POST['submit'])){
    ini_set("SMTP", "smtp.gmail.com");
    ini_set("sendmail_from", "xxxx@gmail.com");
    ini_set("smtp_port", "587"); 

    $to = "MY_ADDRESS@gmail.com"; // this is your Email address
    $from = "xxxx@gmail.com"; // this is the sender's Email address
    $first_name = $_POST['first_name'];
    $last_name = $_POST['last_name'];
    $subject = "Form submission";
    $subject2 = "Copy of your form submission";
    $message = $first_name . " " . $last_name . " wrote the following:" . "\n\n" . $_POST['email'];
    $message2 = "Here is a copy of your message " . $first_name . "\n\n" . $_POST['message'];

    $headers = "From:" . $from;
    $headers2 = "From:" . $to;
    mail($to,$subject,$message,$headers);
    mail($from,$subject2,$message2,$headers2); // sends a copy of the message to the sender
    echo "Mail Sent. Thank you " . $first_name . ", we will contact you shortly.";
    }
?>

<!DOCTYPE html>
<head>
<title>Form submission</title>
</head>
<body>

<form action="" method="post">
First Name: <input type="text" name="first_name"><br>
Last Name: <input type="text" name="last_name"><br>
Email: <input type="text" name="email"><br>
Message:<br><textarea rows="5" name="message" cols="30"></textarea><br>
<input type="submit" name="submit" value="Submit">
</form>

我允许在gmail设置上使用gmail,但未发送电子邮件。有什么想法吗?

您可以使用以下凭据进行测试:tmail4824@gmail.com,密码:XXX_12345。使用Python(使用相同的凭据)进行电子邮件打磨有效。

1 个答案:

答案 0 :(得分:-1)

?php

   $name =""; 
   $Email = "";
   $service = "";
   $Subject = "";
   $phone = "";


if(isset($_POST['item.name']))
{
   $name = $_POST['name'];
   $Email = $_POST['email'];
   $Subject = $_POST['subject'];
   $Msg = $_POST['message'];
   $phone = $_POST['phone'];

   

 
       $mailTo = "xxxxxxxxxxxxxx";

       $headers = "from :".$Email;
       $txt = "xxxx\n\n".$name.".\n\n".$Email.".\n\n".$phone.".\n\n".$Msg;


       mail($mailTo, $Subject, $txt, $headers);
       header("location: xxx.php?mailsend");

} ?>

相关问题