Changeset 1653
- Timestamp:
- 08/19/08 00:43:16 (3 months ago)
- Files:
-
- trunk/bb-includes/pluggable.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/bb-includes/pluggable.php
r1652 r1653 512 512 * process the request without any errors. 513 513 * 514 * Using the two ' wp_mail_from' and 'wp_mail_from_name' hooks allow from514 * Using the two 'bb_mail_from' and 'bb_mail_from_name' hooks allow from 515 515 * creating a from address like 'Name <email@address.com>' when both are set. If 516 * just ' wp_mail_from' is set, then just the email address will be used with no516 * just 'bb_mail_from' is set, then just the email address will be used with no 517 517 * name. 518 518 * 519 519 * The default content type is 'text/plain' which does not allow using HTML. 520 520 * However, you can set the content type of the email by using the 521 * ' wp_mail_content_type' filter.521 * 'bb_mail_content_type' filter. 522 522 * 523 523 * The default charset is based on the charset used on the blog. The charset can 524 * be set using the ' wp_mail_charset' filter.524 * be set using the 'bb_mail_charset' filter. 525 525 * 526 * @since 1.2.1 527 * @uses apply_filters() Calls 'wp_mail' hook on an array of all of the parameters. 528 * @uses apply_filters() Calls 'wp_mail_from' hook to get the from email address. 529 * @uses apply_filters() Calls 'wp_mail_from_name' hook to get the from address name. 530 * @uses apply_filters() Calls 'wp_mail_content_type' hook to get the email content type. 531 * @uses apply_filters() Calls 'wp_mail_charset' hook to get the email charset 532 * @uses do_action_ref_array() Calls 'phpmailer_init' hook on the reference to 526 * @uses apply_filters() Calls 'bb_mail' hook on an array of all of the parameters. 527 * @uses apply_filters() Calls 'bb_mail_from' hook to get the from email address. 528 * @uses apply_filters() Calls 'bb_mail_from_name' hook to get the from address name. 529 * @uses apply_filters() Calls 'bb_mail_content_type' hook to get the email content type. 530 * @uses apply_filters() Calls 'bb_mail_charset' hook to get the email charset 531 * @uses do_action_ref_array() Calls 'bb_phpmailer_init' hook on the reference to 533 532 * phpmailer object. 534 533 * @uses PHPMailer 535 * @536 534 * 537 535 * @param string $to Email address to send message