
Yes, I’m using the 0.2b version and I have the errors which I have write

Try to call it this way, and see what happen.
yes is the same
[!Newsletter!]
[~your_page_id_here~]?mode=signup [~your_page_id_here~]?mode=signout [~your_page_id_here~]?mode=msg [~your_page_id_here~]?mode=doc

I see the subscribe page
Try to call it this way, and see what happen.
[!Newsletter!]
Sorry, where I have to put this code exactly?
use this code for a link to all the 4 different modes, and don’t forgot to remove your_page_id_here with the page id that you have the snippet calling on.
[~your_page_id_here~]?mode=signup [~your_page_id_here~]?mode=signout [~your_page_id_here~]?mode=msg [~your_page_id_here~]?mode=doc
Are you using v0.9.1? What system are you using windows or linuz? PHP version?
Is there anyway I can see into the testing site maybe? I’m kinda confuse, because I can’t reproduce the same problem on mine.
Please report back to me on what’s the problem that you encountered, if possible please paste the error msg again in here

function validateEmail($email)
{
$regexp = "^([_a-z0-9-]+)(\.[_a-z0-9-]+)*@([a-z0-9-]+)(\.[a-z0-9-]+)*(\.[a-z]{2,4})$";
if( $email!='' && eregi($regexp, $email) )
{
return true;
}
else
{
return false;
}
}
if(trim($_POST['email']) == '' || !ereg("^[-!#$%&'*+./0-9=?A-Z^_`a-z{|}~]+", trim($_POST['email']))){
$outError[] = "E-mail address doesn't seem to be valid!";
}
if (!validateEmail(trim($_POST['email'])) {
$outError[] = "E-mail address not valid";
}