Can I use twice the mai() function in the if statement?
something like:
================
if ($email) {
mail(send $email to me);
mail(send an e-mail to $email saying thank you);
}
================
I tried to use it but the script just executes the first mail() function...
Thank you
Felipe Lopes