Script is in PERL
I finally have the IPN postback working but then the customer is brought to
a sign up form to gain access to members area. This is what I get when I hit submit.(Not a valid alertpay email format).
Here is the section the error comes from:
if ($alertpay =~ /^[\w\-\.]+\@[\w\-]+\.[\w\-\.]+\w$/) {}
else {
print $q->header;
print("Not a valid alertpay email format!");
exit;
}
Any ideas would be appreciated.