emediastudios Posted October 17, 2007 Share Posted October 17, 2007 I have been using this code for a few sites i have built for the mail function. <?php ini_set ("SMTP","mail.bigpond.com.au"); ini_set ("sendmail_from","[email protected]"); $EmailFrom = Trim(stripslashes($_POST['email'])); $EmailTo = "[email protected]"; $Subject = "GCProperty Online Enquiry"; $First = Trim(stripslashes($_POST['First'])); $email = Trim(stripslashes($_POST['email'])); $PostCode = Trim(stripslashes($_POST['PostCode'])); $Tel = Trim(stripslashes($_POST['Tel'])); $time = Trim(stripslashes($_POST['time'])); $emailcontact = Trim(stripslashes($_POST['emailcontact'])); $phonecontact = Trim(stripslashes($_POST['phonecontact'])); $comments = Trim(stripslashes($_POST['comments'])); ?> I dont want this to continue, as my email account will be hammered with traffic. I want to use another method, like CGI, how would i do that? Link to comment https://forums.phpfreaks.com/topic/73613-mail-help/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.