Forum Moderators: coopster
Name:(Data)
Email:(Data)
Phone:(Data)
...
Is there a way to, in the generated email, include an image or even put some words on it? Just to make the message i receive a little more professional.
Any help will be appreciated...
For your question, check the mail function in php.net
[php.net...]
example #4 shows how to do it with html. The 3rd argument of the mail function takes the message body. So from wherever you retrieve the name, email, phone etc details you can setup up with the html like:
$message_body ='';
$message_body .='Name: ' . $name;
$message_body .='E-Mail: ' . $email;
etc..