send email with
-
hi
i have a problem with sending email in wordpress using smtp in my custom form. i have this code to send email. but its not working.
this is my code:
// send email to user
$template = file_get_contents(FORM_TPL."user/contact_us/user_email.php", true);
$headers[] = 'Content-type: text/html; charset=utf-8';
$headers[] = 'From: '.get_bloginfo("name").' <'.get_bloginfo("admin_email").'>' . "\r\n";
wp_mail($email,'contact us',$template,$headers);my question is: how to send an email with html template in smtp?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.