How to insert image in mail body when user click on send button. I am using php mail
|
To create an HTML email you can do something like this:
This should build an HTML email for you and you should then be able to insert just normal html. edit You can read more about how to create HTML emails using PHP from here: http://css-tricks.com/sending-nice-html-email-with-php/ |
|||
|
|
|
To insert image in body of mail, you can use phpmailerclass which links are http://www.phpclasses.org/package/264-PHP-Full-featured-email-transfer-class-for-PHP.html |
|||
|
|
|
If you are actually asking: How to attach and insert inline images in a html email? you can use this for guidance :) http://www.phpeveryday.com/articles/PHP-Email-Using-Embedded-Images-in-HTML-Email-P113.html In that example, pay extra attention to how the src attribute of the img tag is filled (the "cid" is actually the id given as "Content-ID:" for the image attachment header). Hope this helps, all the best... |
|||
|
|
mail()function? If so, I think that it is HTML mail, which I believe could use the<a>tag. – Rhino Mar 22 '11 at 11:21