AbanteCart Community

Shopping Cart Operations => Support => Template Support => Topic started by: ibnuzahari on December 06, 2013, 11:04:18 PM

Title: How to amend Contact Us Form
Post by: ibnuzahari on December 06, 2013, 11:04:18 PM
Guys, any idea on how to amend the contact us form?
And how to direct it to the another email?

Thank You.
Title: Re: How to amend Contact Us Form
Post by: abantecart on December 06, 2013, 11:17:39 PM
Currently main store email is used for contact us sending.

You can edit this in the file:
storefront/controller/pages/content/contact.php

Locate:
Code: [Select]
$mail->setTo($this->config->get('store_main_email'));


Title: Re: How to amend Contact Us Form
Post by: ibnuzahari on December 06, 2013, 11:42:51 PM
which part should i replace with the new email?
i try to replace 'store_main_email' with the new one.
but seems no function.
Title: Re: How to amend Contact Us Form
Post by: abantecart on December 14, 2013, 02:13:03 PM
You need to specify your custom email in the function just for contact us page.

Code: [Select]
$mail->setTo('your@email.com');