You appear to be a bot. Output may be restricted
Description
Add filters / actions before the email is sent
Usage
EDD_Emails::send_before();
Parameters
Returns
void
Source
File name: easy-digital-downloads/includes/emails/class-edd-emails.php
Lines:
1 to 5 of 5
public function send_before() { add_filter( 'wp_mail_from', array( $this, 'get_from_address' ) ); add_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ) ); add_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ) ); }