Codex

Function Reference/wp mail

Contents

Description

Send mail, similar to PHP's mail.

The default sender name is "WordPress" and the default sender email address is wordpress@yoursite.com. These may be overridden by including a header like:

From: "Example User" <email@example.com>

Then, the optional hooks 'wp_mail_from' and 'wp_mail_from_name' are run on the sender email address and name. The return values are reassembled into a 'from' address like '"Example User" <email@address.com>' If only 'wp_mail_from' returns a value, then just the email address will be used with no name.

The default content type is 'text/plain' which does not allow using HTML. You can set the content type of the email either by using the 'wp_mail_content_type' filter (see example below), or by including a header like "Content-type: text/html". Be careful to reset wp_mail_content_type back to 'text/plain' after you send your message, though, because failing to do so could lead to unexpected problems with e-mails from WP or plugins/themes.

The default charset is based on the charset used on the blog. The charset can be set using the 'wp_mail_charset' filter.

Usage

 <?php wp_mail$to$subject$message$headers$attachments ); ?> 

Parameters

$to
(string or array) (required) The intended recipient(s). Multiple recipients may be specified using an array or a comma-separated string.
Default: None
$subject
(string) (required) The subject of the message.
Default: None
$message
(string) (required) Message content.
Default: None
$headers
(string or array) (optional) Mail headers to send with the message. (advanced)
Default: Empty
$attachments
(string or array) (optional) Files to attach: a single filename, an array of filenames, or a newline-delimited string list of multiple filenames. (advanced)
Default: Empty

Return

(bool) 
Whether the email contents were sent successfully.

A true return value does not automatically mean that the user received the email successfully. It just only means that the method used was able to process the request without any errors.

Using $headers To Set "From:", "Cc:" and "Bcc:" Parameters

To set the "From:" email address to something other than the WordPress default sender (see to: above), or to add "Cc:" and/or "Bcc:" recipients, you must use the $headers argument.

$headers can be a string or an array, but is probably easiest to use in its array form. To use it, push a string onto the array, starting with "From:", "Bcc:" or "Cc:" (note the use of the ":"), followed by a valid email address.

When you're using the array form, you do not need to supply linebreaks ("\n" or "\r\n"). Although the function can handle multiple emails per line, it may simply be easier to push each email address separately onto the $headers array. The function will figure it out and will build the proper Mime header automagically. Just don't forget that each string you push must have the header type as the first part of the string ("From:", "Cc:" or "Bcc:")

Examples

 <?php wp_mail('me@example.net''The subject''The message'); ?> 

<?php
   $attachments = array(WP_CONTENT_DIR . '/uploads/file_to_attach.zip');
   $headers = 'From: My Name <myname@mydomain.com>' . "\r\n";
   wp_mail('test@test.com', 'subject', 'message', $headers, $attachments);
?>
<?php
add_filter( 'wp_mail_content_type', 'set_html_content_type' );
wp_mail( 'me@example.net', 'The subject', '<p>The <em>HTML</em> message</p>' );
remove_filter( 'wp_mail_content_type', 'set_html_content_type' ); // reset content-type to to avoid conflicts -- http://core.trac.wordpress.org/ticket/23578

function set_html_content_type()
{
	return 'text/html';
}
?>
<?php
// Example using the array form of $headers
// assumes $to, $subject, $message have already been defined earlier...

$headers[] = 'From: Me Myself <me@example.net>';
$headers[] = 'Cc: John Q Codex <jqc@wordpress.org>';
$headers[] = 'Cc: iluvwp@wordpress.org'; // note you can just use a simple email address

wp_mail( $to, $subject, $message, $headers );
?>

Notes

A true return value does not automatically mean that the user received the email successfully.

For this function to work, the settings SMTP and smtp_port (default: 25) need to be set in your php.ini file.

The function is available after the hook 'plugins_loaded'.

Change Log

Since: 1.2.1

Source File

wp_mail() is located in wp-includes/pluggable.php.

Related

 

See also index of Function Reference and index of Template Tags.
This page is marked as incomplete. You can help Codex by expanding it.