我搜索了很多如何发送电子邮件,但我发现的是针对特定标准.2给出了以下内容;
喜欢如何邮寄表单localhost(通过在sendmail.ini和其他自定义代码中提供详细信息) 如何在godaddy托管中使用邮件(使用PHP Form Mailer)
如果我遵循这些,它将通过更改主机文件变得具体。
虽然有许多脚本(开发的待开发网站)允许用户在localhost或任何主机方案上安装这些脚本并输入smtp凭证,并且这些脚本能够发送邮件(contact-us表单)而无需更改主机文件。
但我所知道的是在“sendmail.ini”中提供凭证。文件(id,密码,smtp服务器)发送邮件或使用PHP Form Mailer进行godaddy托管。
但实际上我正在开发网站,我会把它放在&#c; codycanon'或者其他销售平台,所以在这种情况下,用户可以在他喜欢的任何主机上托管它。 您可以指导我如何在不更改主机文件的情况下发送邮件吗?
答案 0 :(得分:0)
使用PHP MAILER脚本https://github.com/PHPMailer/PHPMailer 将它包含在您的项目中并像这样使用
<?php
require 'PHPMailerAutoload.php';
$mail = new PHPMailer;
//$mail->SMTPDebug = 3; // Enable verbose debug output
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'smtp1.example.com;smtp2.example.com'; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'user@example.com'; // SMTP username
$mail->Password = 'secret'; // SMTP password
$mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 587; // TCP port to connect to
$mail->setFrom('from@example.com', 'Mailer');
$mail->addAddress('joe@example.net', 'Joe User'); // Add a recipient
$mail->addAddress('ellen@example.com'); // Name is optional
$mail->addReplyTo('info@example.com', 'Information');
$mail->addCC('cc@example.com');
$mail->addBCC('bcc@example.com');
$mail->addAttachment('/var/tmp/file.tar.gz'); // Add attachments
$mail->addAttachment('/tmp/image.jpg', 'new.jpg'); // Optional name
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = 'Here is the subject';
$mail->Body = 'This is the HTML message body <b>in bold!</b>';
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
if(!$mail->send()) {
echo 'Message could not be sent.';
echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
echo 'Message has been sent';
}
您的所有用户所要做的就是使用其托管服务提供商提供的SMTP详细信息并将其输入相关变量,您可以更高一些,并创建一个交互式html页面,您的用户可以在其中输入详细信息,并且您的脚本会自动执行此过程编辑配置。
SwiftMailer也是一种潜在的选择。