|
core:onBeforeEmailSendToCustomer event
Event handler signaturepublic array event_onBeforeEmailSendToCustomer(Shop_Customer $customer, string $subject, string $text, string $customer_email, string $customer_name, mixed $custom_data, array $reply_to, System_EmailTemplate $template)
Triggered before an email notification is sent to a customer.
The event handler can override some variables before the message is sent. The handler function should return
an associative array containing variable names and values. The supported variables are:
01. public function subscribeEvents() 02. { 03. Backend:: $events ->addEvent( 'core:onBeforeEmailSendToCustomer' , $this , 'before_email_send_to_customer' ); 04. } 05. 06. public function before_email_send_to_customer( $customer , $subject , $message_text , $customer_email , $customer_name , $custom_data , $reply_to ) 07. { 08. $result = array ( 09. 'reply_to' => array ( 'john@example.com' => 'John Smith' ) 10. ); 11. 12. return $result ; 13. } |