The mail tag has no wiki summary.
14
votes
3answers
5k views
Why won't wp_mail() let me set the From: header when plain old PHP mail() will?
When I use wp_mail( $to, $subject, $message, $headers ) (with values in place, of course), the email gets sent with a from name and email that isn't set anywhere I can find (not even in PHP or Apache ...
2
votes
1answer
144 views
Writing a plugin that notify my friends of new post that mentions(@) them
For example, I write a new post with content "Today I'm happy, because I finally met the girl that @David told me about bla blah..." Once the post is published, there should be an email notification ...
1
vote
1answer
178 views
Should I use the standard wp_mail() function for a premium theme?
I am creating a premium theme that includes a Contact page template. Currently, I am using the wp_mail() function to send the contact email to the administrator-specified email address.
Basically, I ...