PHPMailer 和 OATH 支持

发布于 2025-01-13 18:18:46 字数 969 浏览 0 评论 0原文

我的问题很简单...如何将 OAuth 凭据(例如客户端 ID、客户端密钥和刷新令牌)传递到 WordPress 提供的内置 PHPMailer。我假设它必须通过functions.php 文件夹完成,但我不确定。下面是 add_action 的示例。我找不到任何有关如何在任何地方传递 OAuth 凭据的信息。

function send_smpt_email($mailer) {                                
   $mailer->isSMTP();                                            
   $mailer->SMTPDebug  = SMTP::DEBUG_SERVER;                                      
   $mailer->Host       = 'smtp.gmail.com';                           
   $mailer->Port       = 587;
   $mailer->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS;         
   $mailer->SMTPAuth   = true;                                   
   $mailer->AuthType   = 'XOAUTH2';
   $mailer->ClientId   = 'Client ID'; 
   $mailer->ClientSecret = 'Client Secret';
   $mailer->RefreshToken = 'Refresh Token';
}
add_action('phpmailer_init', 'send_smpt_email');

显然,这不是它的实现方式,但我的全部目的是弄清楚如何实现。这只是为了说明我的问题。希望有人已经弄清楚了这一点并可以提供帮助。

My question is simple... How do I pass in OAuth credentials, such as client ID, client secret, and refresh token to the built in PHPMailer supplied by WordPress. I'm assuming it has to be done via the functions.php folder but I am unsure. An example of what the add_action might look like is below. I cant find any information on how to pass the OAuth credentials anywhere.

function send_smpt_email($mailer) {                                
   $mailer->isSMTP();                                            
   $mailer->SMTPDebug  = SMTP::DEBUG_SERVER;                                      
   $mailer->Host       = 'smtp.gmail.com';                           
   $mailer->Port       = 587;
   $mailer->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS;         
   $mailer->SMTPAuth   = true;                                   
   $mailer->AuthType   = 'XOAUTH2';
   $mailer->ClientId   = 'Client ID'; 
   $mailer->ClientSecret = 'Client Secret';
   $mailer->RefreshToken = 'Refresh Token';
}
add_action('phpmailer_init', 'send_smpt_email');

Obviously, this isn't how it is done but my whole purpose here is to figure out how. This is simply to illustrate my question. Hopefully someone has figured this out and can help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文