In the main library it has the following:
$CI-email-from(AUTORESPONDERS_FROMEMAIL, AUTORESPONDERS_FROMNAME);
I have noted throughout the controllers that it uses the following:
/** Send user a course request phone call success email: - sends a BCC to staff **/
@$this-autoresponder-send(15, $booking['email_address'], $responder_array['%full_name'], $responder_array, TRUE);
I have also noted in the constants file - in the config folder the previous developer has set the following:
define('AUTORESPONDERS_FROMEMAIL', "email@domain.org");
define('AUTORESPONDERS_FROMNAME', 'Domain');
define('AUTORESPONDERS', 'ON'); // used for debugging and development to switch autoresponder emails ON or OFF
Am I able to do "email@domain.org", "email1@domain.org"?