I have a weird problem with the wp_mail function. I would to customize the sender of the email so I am trying to set properly the headers of the email.

This is the cose I use to customize the headers:

$current = wp_get_current_user();
global $user_email;
get_currentuserinfo();
$headers_mail = "From: ".$current->first_name." ".$current->last_name." <".$user_email.">" . "\r\n";

and this is the cose I use to send the email:

wp_mail($email, $subject, $message, $headers_mail);

Unfortunately the sender of the email is always set to "WebsiteTitle " where WebsiteTitle is an alias for the real title of the website and mydomain.com is an alias for the real domain of the website.

How can I overwrite the headers of the email? Is there any filter that I should use?

Thanks

link|improve this question

59% accept rate
feedback

2 Answers

up vote 0 down vote accepted

Solved. I used wp_mail_from and wp_mail_from_name filters. An excellent documentation can be found here http://adambrown.info/p/wp_hooks/hook/wp_mail_from?version=3.2&file=wp-includes/pluggable.php and here http://adambrown.info/p/wp_hooks/hook/wp_mail_from_name?version=3.2&file=wp-includes/pluggable.php

link|improve this answer
feedback

You can also use an excellent WP Mail SMTP plugin

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.