我想覆盖wordpress提供的默认SMTP服务器设置,并且必须在插件的多个位置使用相同的SMTP设置来发送邮件。
新的SMTP服务器详细信息将由用户通过wp-admin
上的表单提供在谷歌搜索时,我来到了phpMailer,class-smtp.php
我能想到的可能解决方案
1.为phpmailer类创建一个全局对象,并在插件中使用它
2.覆盖默认的wordpress SMTP服务器设置
3.将用户输入的设置保存在数据库中,并在创建PHPmailer对象时检索它,无论我在哪里发送邮件。
我面对上述解决方案的问题是......
第一解决方案。我无法弄清楚如何实现它。
第二个解决方案:我在wordpress codex上找不到任何资源,可以解释如何覆盖默认的smtp设置。
第三种解决方案:效率不高。
另外,我正在尝试创建一个独立的插件,因此无法创建对任何第三方插件的依赖。虽然我已尝试浏览wp-smtp的源代码,但无法弄清楚如何在多个位置使用相同的设置。
我正在使用Tom Mcfarlin的Wordpress Boilerplate插件(link),以便创建一个标准的插件文件结构,所以如果有人可以使用样板解释我的解决方案,那真的是有用和高效。
编辑:
我正在上传文件结构以便更好地理解。
这是表格
在class-atf-admin.php中成功检索表单值
我需要在class-atf-admin.php中创建一个全局变量,我在其中设置从表单接收的值并在上图所示的文件中使用它。
答案 0 :(得分:2)
Mkay,我将在选项1处获得一个破解(虽然不是100%的phpmailer命名)
在您的主插件文件中,基于this example code
<?php
require_once 'phpmailer/PHPMailerAutoload.php';
$mail = new PHPMailer();
$body = file_get_contents('contents.html');
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host = "mail.yourdomain.com"; // SMTP server
$mail->SMTPDebug = 2; // enables SMTP debug information (for testing)
// 1 = errors and messages
// 2 = messages only
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->Host = "mail.yourdomain.com"; // sets the SMTP server
$mail->Port = 26; // set the SMTP port for the GMAIL server
$mail->Username = "yourname@yourdomain"; // SMTP account username
$mail->Password = "yourpassword"; // SMTP account password
$mail->SetFrom('name@yourdomain.com', 'First Last');
$mail->AddReplyTo("name@yourdomain.com","First Last");
$mail->Subject = "PHPMailer Test Subject via smtp, basic with authentication";
$mail->MsgHTML($body);
$address = "whoto@otherdomain.com";
$mail->AddAddress($address, "John Doe");
$mail->AddAttachment("images/phpmailer.gif"); // attachment
$mail->AddAttachment("images/phpmailer_mini.gif"); // attachment
if(!$mail->Send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message sent!";
}
}
对于来自用户端的变量,将上面的内容添加到短代码中,并通过短代码插入smtp详细信息。例如
[sendMail host="mail.yourdomain.com" port="26" username="yourname@yourdomain" password="yourpassword"]