
Originally Posted by
100asa
testimonial don't send email to customer when them add testimonial. Why?
The reason that the customer email is not being sent is this line in /includes/languages/english/YOUR_TEMPLATE/testimonials_add.php:
Code:
define('EMAIL_SUBJECT', 'Your Testimonial Submission At ' . STORE_NAME . '.' . "\n\n");
The trailing "\n\n" causes the zen_mail function to abort the send because there are new-line characters in the email subject. Simply removing those characters as below enables the customer emails to be sent.
Code:
define('EMAIL_SUBJECT', 'Your Testimonial Submission At ' . STORE_NAME . '.');