如何在我的 WordPress 站点中使用自定义 SMTP 设置
How to use a custom SMTP settings in my WordPress site
我需要为我的 WordPress 站点使用自定义 SMTP 设置,以通过我的电子邮件服务器(例如 Mailgun 或 SendGrid)发送电子邮件。
将其放入您的主题 function.php 或您自己的插件中。
add_action( 'phpmailer_init', 'custom_phpmailer_init' );
function custom_phpmailer_init( $phpmailer ) {
$phpmailer->isSMTP();
$phpmailer->Host = 'smtp.mailgun.com';
$phpmailer->Port = 465;
$phpmailer->Username = 'user_name';
$phpmailer->Password = '********';
$phpmailer->SMTPAuth = true;
$phpmailer->SMTPSecure = 'ssl';
$phpmailer->From = 'FromName@example.com';
$phpmailer->FromName = 'FromName';
}
我需要为我的 WordPress 站点使用自定义 SMTP 设置,以通过我的电子邮件服务器(例如 Mailgun 或 SendGrid)发送电子邮件。
将其放入您的主题 function.php 或您自己的插件中。
add_action( 'phpmailer_init', 'custom_phpmailer_init' );
function custom_phpmailer_init( $phpmailer ) {
$phpmailer->isSMTP();
$phpmailer->Host = 'smtp.mailgun.com';
$phpmailer->Port = 465;
$phpmailer->Username = 'user_name';
$phpmailer->Password = '********';
$phpmailer->SMTPAuth = true;
$phpmailer->SMTPSecure = 'ssl';
$phpmailer->From = 'FromName@example.com';
$phpmailer->FromName = 'FromName';
}