Creating a form that sends an email to inputted emails

Is this an image the user can upload? If not you can simply locate the URL for the image and paste it where you want it in the email. Otherwise you will need an image uploading script that will take place before you send the email and you will need to point to wherever you store that image.

I do all my email styling inline (

).

I was just hoping to put <img src""> in

[php]


You have been invited to “.$from.”'s Party!






Here are some of the details…


Date:
".$_POST['Date']."

Time:
".$_POST['Time']."

Location:
".$_POST['Location']."

RSVP:
".$_POST['RSVP']."


Comments:
$Comments


[/php]

oh my gosh i figured it out!

i just did:

// Image 1
$image1 = “http://www.site.com/images/image1.png”;

// Image 2
$image2 = “http://www.site.com/images/image2.png”;

then


thanks again!

Sponsor our Newsletter | Privacy Policy | Terms of Service