wp config dosyasını düzenlemeden de functions.php ye ekleyeceğiniz kod çalışacaktır. fazladan işlem olmasın diye söyleyeyim dedim.
Örnek yandex SMTP ayarları;
add_action( 'phpmailer_init', 'my_phpmailer_example' );
function my_phpmailer_example( $phpmailer ) {
$phpmailer->isSMTP();
$phpmailer->Host = 'smtp.yandex.com.tr';
$phpmailer->SMTPAuth = true; // Force it to use Username and Password to authenticate
$phpmailer->Port = 465;
$phpmailer->Username = 'iletisim@alanadi.com';
$phpmailer->Password = 'mailşifresi';
$phpmailer->SMTPSecure = "ssl"; // Choose SSL or TLS, if necessary for your server
$phpmailer->From = "iletisim@alanadi.com";
$phpmailer->FromName = "İletisim - alanadi.com";
}
Kaynak: https://codex.wordpress.org/Plugin_API/Action_Reference/phpmailer_init#Examples