Guys, any idea on how to amend the contact us form?
And how to direct it to the another email?
Thank You.
Currently main store email is used for contact us sending.
You can edit this in the file:
storefront/controller/pages/content/contact.php
Locate:
$mail->setTo($this->config->get('store_main_email'));
which part should i replace with the new email?
i try to replace 'store_main_email' with the new one.
but seems no function.
You need to specify your custom email in the function just for contact us page.
$mail->setTo('your@email.com');