我正在更新我制作的几个网站上的一些联系表格,我正在使用phpmailer。
我使用SMTP方法填写需要发送到的电子邮件客户端的用户名和密码,如下所示:
$mail->SMTPDebug = 2; // Enable verbose debug output
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'mailout.one.com'; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'info@company.com'; // SMTP username
$mail->Password = 'mypass'; // SMTP password
$mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 587; // TCP port to connect to
//Recipients
$mail->setFrom('info@company.com', $email);
$mail->addAddress('info@company.com');
$mail->addReplyTo(''.$email.'');
我的问题是我必须用他们的密码给我的客户他/她的电子邮件地址,我怎么能在不向客户询问他们的电子邮件信息的情况下解决这个问题。