Ndey, on 13 October 2009, 01:34, said:
Is it possible to make contact us to send to extra email as well?
Pls help….. Thx
Yes, possible. If you want to receive exactly the same email as the store owner then:
1) fill out the "send extra order emails field" in your admin panel
2) in file catalog/contact_us.php
Find the code
if (tep_validate_email($email_address)) {
tep_mail(STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS, EMAIL_SUBJECT, $enquiry, $name, $email_address);
add under it a second tep mail function as follows
// send the contact us form to other people (mm 13 10 2009)
if (SEND_EXTRA_ORDER_EMAILS_TO != '') {
tep_mail('', SEND_EXTRA_ORDER_EMAILS_TO, EMAIL_SUBJECT, $enquiry, $name, $email_address);
}
If you did the changes like described in post #2 of this topic, then the function should look like this
// send the contact us form to other people (mm 13 10 2009)
if (SEND_EXTRA_ORDER_EMAILS_TO != '') {
tep_mail('', SEND_EXTRA_ORDER_EMAILS_TO, EMAIL_SUBJECT, $email_body, $name, $from_email);
}
hope it helps
Edited by multimixer, 13 October 2009, 06:42.