Is there a way to send an automatic email response, once someone has submitted their info into a database? I mean, I know there is, but how? Thanks! j
Sure...
if(mysql_query("INSERT blah blah blah")) { $to = "someone@somewhere.net"; $subject = "Blah"; $message = "Blah, blah, blah"; mail($to,$subject,$message); }
ah. right. thank you.