%
set CLASS_cEmail = new CEmail
set CLASS_cEmailtemplate = new CEmailtemplate
CLASS_cEmail.EmailComponent=CONFIG.Setting("EmailComponent")
CLASS_cEmail.EmailServerName=CONFIG.Setting("EmailServerName")
CLASS_cEmail.EmailFormat=CONFIG.Setting("EmailFormat")
CLASS_cEmail.EmailFrom=CONFIG.Setting("AdministratorsEmail")
CLASS_cEmail.EmailTo=CONFIG.Setting("AdministratorsEmail")
CLASS_cEmail.EmailSubject=CONFIG.Setting("META_SiteTitle")&": Unverified Payment Notification"
CLASS_cEmail.EmailBody="Hello,
A payment attempted to process itself on your site that can not be verified. It is advisable you login to your payment processor control panel and investigate this matter further.
"&Request.Form
CLASS_cEmail.sendEmail
set CLASS_cEmail = nothing
set CLASS_cEmailTemplate = nothing
%>