Girdi yapan MustAdmin

WordPress Eklentisiz Smtp Ayarları

wp-config.php eklenecek kodlar: /** SMTP Ayarları */ define(‘SMTP_USER’, ‘epostaadresi’); define(‘SMTP_PASS’, ‘epostaadresininsifresi’); define(‘SMTP_HOST’, ‘mail.siteadresi.com’); define(‘SMTP_FROM’, ‘epostaadresi’); define(‘SMTP_NAME’, ‘siteismi’); define(‘SMTP_PORT’, ‘587’); define(‘SMTP_SECURE’, ‘tls’); define(‘SMTP_AUTH’, true); define(‘SMTP_DEBUG’, 0); functions.php eklenecek kodlar: /** SMTP Ayarları */ add_action( ‘phpmailer_init’, ‘send_smtp_email’ ); function send_smtp_email( $phpmailer ) { $phpmailer->isSMTP(); $phpmailer->Host = SMTP_HOST; $phpmailer->SMTPAuth = SMTP_AUTH; $phpmailer->Port = SMTP_PORT; $phpmailer->Username = SMTP_USER; $phpmailer->Password […]