0
PFBで自分のコードPHPのメールのGmail
<html>
<head>
<title> Your information</title>
</head>
<body>
<?php
$x = $_POST['yourname'];
$email = $_POST['email'];
$msg="Your Name is $x.";
$to='[email protected]';
$sub='Your information';
$header = "From: ". $x . " <" . $email . ">\r\n";
ini_set("SMTP","smtp.gmail.com");
ini_set('sendmail_from', '[email protected]');
//$email is entered as [email protected]
if(mail($to, $sub, $msg,'From:' . $email)){
echo 'success';
}
else{
echo 'failure';
}
echo 'Thanks for submitting your information<br/>';
echo 'Your Name ' . $x . '<br/>' ;
echo 'Email ' . $email . '<br/>' ;
echo $msg;
?>
</body>
</html>
を動作していない()関数。 、php.iniの設定はSMTP = smtp.gmail.com smtp_port = 587です。これらの設定は、Outlookの設定と一致します。
私のブラウザでは、まだ「失敗」が発生しています。 助けてください。