Can I send the 'contact us' form email to a different email address than the one set in Business Settings?
To do this try the following:
* browse to your site folder and edit 'MailForm.pl' in a text editor such as notepad (take a backup first)
* search for:
ACTINIC::SendMail
* you should see:
my @Response = ACTINIC::SendMail($::g_sSmtpServer, $$::g_pSetupBlob{EMAIL}, $sSubject, $sTextMailBody, $sEmailRecpt);
* replace:
$$::g_pSetupBlob{EMAIL}
with the email address in single quotes, so it will look something like:
my @Response = ACTINIC::SendMail($::g_sSmtpServer, 'name@domain.co.uk', $sSubject, $sTextMailBody, $sEmailRecpt);
* save and close the file and update your site.
To do this try the following:
* browse to your site folder and edit 'MailForm.pl' in a text editor such as notepad (take a backup first)
* search for:
ACTINIC::SendMail
* you should see:
my @Response = ACTINIC::SendMail($::g_sSmtpServer, $$::g_pSetupBlob{EMAIL}, $sSubject, $sTextMailBody, $sEmailRecpt);
* replace:
$$::g_pSetupBlob{EMAIL}
with the email address in single quotes, so it will look something like:
my @Response = ACTINIC::SendMail($::g_sSmtpServer, 'name@domain.co.uk', $sSubject, $sTextMailBody, $sEmailRecpt);
* save and close the file and update your site.