Skip to navigation
How to use a smtp server in your word-press without yet another plugin
24.08.18
add the below code to your theme function.php file. it will register the smtp function to word-press. add_action( 'phpmailer_init', 'smtp' ); function smtp($phpmailer) { $phpmailer->Host = 'foo.com'; $phpmailer->Port = 25; $phpmailer->SMTPAuth = true; $phpmailer->Username = 'foo'; $phpmailer->Password = 'barbar'; $phpmailer->isSMTP(); }
https://aftabmuni.wordpress.com/tag/hook-wp_mail-function/
Reply
Anonymous
Information Epoch 1740379331
Effectiveness beats efficiency.
Home
Notebook
Contact us