One of my clients has asked that the contact form goes to a sales@company.co.uk email rather than the orders@company.co.uk that the customer receipts have as their from address.
Can anyone give me a pointer as to which perl script needs to be edited.(presumably MailForm.pl)
I had a quick look and changed the following line.
to
however this didn't work and threw the servers generic error page - presumably the function is expecting $$::g_pSetupBlob{EMAIL} to return something other than a string?
Anybody got any ideas?
Can anyone give me a pointer as to which perl script needs to be edited.(presumably MailForm.pl)
I had a quick look and changed the following line.
my @Response = ACTINIC::SendMail($::g_sSmtpServer, $$::g_pSetupBlob{EMAIL}, $sSubject, $sTextMailBody, $sEmailRecpt);
my @Response = ACTINIC::SendMail($::g_sSmtpServer, "sales@company.co.uk", $sSubject, $sTextMailBody, $sEmailRecpt);
Anybody got any ideas?
Comment