Docs: Remove incorrect information about usage of the "from" filters in wp_mail(), tidy up formatting.

See #47110


git-svn-id: https://develop.svn.wordpress.org/trunk@45388 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
John Blackbourn 2019-05-23 22:41:12 +00:00
parent 9b248694ac
commit bcf74af357

View File

@ -143,18 +143,13 @@ endif;
if ( ! function_exists( 'wp_mail' ) ) : if ( ! function_exists( 'wp_mail' ) ) :
/** /**
* Send mail, similar to PHP's mail * Sends an email, similar to PHP's mail function.
* *
* A true return value does not automatically mean that the user received the * 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 * email successfully. It just only means that the method used was able to
* process the request without any errors. * process the request without any errors.
* *
* Using the two 'wp_mail_from' and 'wp_mail_from_name' hooks allow for * The default content type is `text/plain` which does not allow using HTML.
* creating a from address like 'Name <email@address.com>' when both are set. If
* just 'wp_mail_from' is set, then just the email address will be used with no
* name.
*
* The default content type is 'text/plain' which does not allow using HTML.
* However, you can set the content type of the email by using the * However, you can set the content type of the email by using the
* {@see 'wp_mail_content_type'} filter. * {@see 'wp_mail_content_type'} filter.
* *