I've been investigating this matter and I've noticed that the following segment is absent from Mailform.pl in both V8 and V9.
This means that, in these versions, no automatic email response is sent to the person who has submitted the contact form on the website.
It was present in V7 (I found it via http://community.actinic.com/showthr...m+confirmation ) but appears to be absent from MailForm.pl in V8 and V9 and I know the absence of the automatic response has been mentioned on the forums before
Any reason why it's been omitted from these versions? The Design > Text prompt is still there!
I've reinstated the missing code into the .pl file and my auto response is now working again but I'd be interested to know why it's been removed.
For anyone who wants to do it, you need to place it immediately ABOVE the lines
Code:
# # Send the same message to the sender # Withe a "thank you" prefix # $sTextMailBody = ACTINIC::GetPhrase(-1, 2379) . "\r\n\r\n" . $sTextMailBody; my @Response = ACTINIC::SendMail($::g_sSmtpServer, $sEmailRecpt, $sSubject, $sTextMailBody, $$::g_pSetupBlob{EMAIL}); if ($Response[0] != $::SUCCESS) { ACTINIC::RecordErrors($Response[1], ACTINIC::GetPath()); $sError = $Response[1]; }
It was present in V7 (I found it via http://community.actinic.com/showthr...m+confirmation ) but appears to be absent from MailForm.pl in V8 and V9 and I know the absence of the automatic response has been mentioned on the forums before
Any reason why it's been omitted from these versions? The Design > Text prompt is still there!
I've reinstated the missing code into the .pl file and my auto response is now working again but I'd be interested to know why it's been removed.
For anyone who wants to do it, you need to place it immediately ABOVE the lines
Code:
# # Now bounce back to the mail page #
Comment