On this page
apply_filters( 'wp_mail_from', string $from_email )
Filters the email address to send from.
Parameters
$from_emailstring-
Email address to send from.
More Information
- The
wp_mail_fromfilter modifies the “from email address” used in an email sent using the wp_mail() function. When used together with the ‘wp_mail_from_name‘ filter, it creates a from address like “Name”. The filter should return an email address. - To avoid your email being marked as spam, it is highly recommended that your “from” domain match your website.
- Some hosts may require that your “from” address be a legitimate address.
- If you apply your filter using an anonymous function, you cannot remove it using remove_filter() .
Source
File: wp-includes/pluggable.php. View all references
$from_email = apply_filters( 'wp_mail_from', $from_email );
Related
Used By
| Used By | Description |
|---|---|
| wp_mail() wp-includes/pluggable.php | Sends an email, similar to PHP’s mail function. |
Changelog
| Version | Description |
|---|---|
| 2.2.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/hooks/wp_mail_from