Strange... Double-check this line of code in the store chunk:
PHP Code:
mail( $to, $subject, $message,"From: $bbuserinfo[email]") or print "Could NOT send mail";
and this one
PHP Code:
mail( $to, $subject, $message,"From: [email]youremail@yourdomain.com[/email]") or print "Could NOT send mail";
If everything looks okay and you still get the message, just delete (in both lines):
Code:
or print "Could NOT send mail"
So, it would look like this:
PHP Code:
mail( $to, $subject, $message,"From: [email]youremail@yourdomain.com[/email]");
That will get rid of the message. Good luck!