Hello all
I want to create a PHP email a friend app. Ok, that's no problem, but how do I send images via email?
I mean if I send out an html page with images, how do I include those images with the email and reference them?
My experience has been most of the time when an HTML email is sent, with images in the HTML they refrence an external server. Meaning if I receive an email from www.foo.com, the images in the email are on www.foo.com's server.
This has just been my experience, sorry it does not directly answer your question...
PHPdev
PHPdev is right - you should never really send images in email unless it's small - simply out of courtesy. Doing it the way PHPdev suggested allows people to choose - sending it directly in the message forces them to download it (which is a pain if you're on dialup).
JMJimmy