T
Thomas B
Guest
I would like to add a picture to my e-mail send out program in php, but I would not like it to be an attachment. Here is the code I have written so far.
$firstName = $_REQUEST['firstName'];
$lastName = $_REQUEST['lastName'];
$phone = $_REQUEST['phone'];
$email = $_REQUEST['email'] ;
$message = $_REQUEST['message'] ;
$time=(date("g:i A l F d Y"));
$string1 = ""
mail( "[email protected]", "Test",
$string1, "From: $email" );
$firstName = $_REQUEST['firstName'];
$lastName = $_REQUEST['lastName'];
$phone = $_REQUEST['phone'];
$email = $_REQUEST['email'] ;
$message = $_REQUEST['message'] ;
$time=(date("g:i A l F d Y"));
$string1 = ""
mail( "[email protected]", "Test",
$string1, "From: $email" );