Cheap Commercial Posted April 22, 2006 Share Posted April 22, 2006 hi there what is the php script to sendall info submitted to my email like [a href=\"http://www.splices.org/test/wow.php?bob=\" target=\"_blank\"]http://www.splices.org/test/wow.php?bob=[/a]??? please and thank you in advanced Link to comment https://forums.phpfreaks.com/topic/8133-info-to-email/ Share on other sites More sharing options...
Orio Posted April 23, 2006 Share Posted April 23, 2006 If you want to send yourself everything submitted, do something like this: (Lets say he submitted his name and phone number)[code]<?php$to="[email protected]";$subject="Info";$msg="Name= ".$_POST['name]."/n Phone number= ".$_POST['tel'];if(mail($to,$subject,$msg){echo "Mail sent";} else{echo "There was a problem sending your info";};?>[/code]Orio. Link to comment https://forums.phpfreaks.com/topic/8133-info-to-email/#findComment-29792 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.