Is it possible to suppress the confirmation email automatically send back to the customer?
OK - so I figured it out. Well, it has been a hard week.
OK - so I figured it out. Well, it has been a hard week.
# # 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}, $sSubscribe, $sSurname); if ($Response[0] != $::SUCCESS) { ACTINIC::RecordErrors($Response[1], ACTINIC::GetPath()); $sError = $Response[1];
Comment