有没有办法在php或javascript中发送没有密码的邮件。 我需要发送邮件而不要求他的密码。 请帮我找到解决方案。
提前致谢。
修改
这是我试过的代码
<?php
error_reporting(E_ALL);
$to = "person2@gmail.com";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "person2@gmail.com";
$headers = "From:" . $from;
mail($to,$subject,$message,$headers) or die("errors");
echo "Mail Sent.";
?>
并显示错误为o / p而不是发送邮件
答案 0 :(得分:0)
使用PHP,您只需使用mail()
功能,这不需要用户输入他/她的密码。
可以在php.ini
。
答案 1 :(得分:0)