Deprecated
This method has been deprecated.
AnsPress_Email_Hooks::initiate_send_email()
Description #
Sends email to array of email ids.
Source #
File: addons/free/email.php
public static function initiate_send_email() { SELF::$emails = array_unique( SELF::$emails ); SELF::$emails = apply_filters( 'ap_emails_to_notify', SELF::$emails ); foreach ( (array) SELF::$emails as $email ) { SELF::send_mail( $email, SELF::$subject, SELF::$message ); } }
Expand full source code Collapse full source code View on GitHub: addons/free/email.php:327
Add your comment