Re: [PHP] Embed images in emails

2008-05-30 Thread Iñigo Medina García
Hi Bastien, thanks for the tip. I've already done it and it didn't run. But I'll check it again. iñigo On Thu, May 29, 2008 at 6:11 AM, Iñigo Medina García [EMAIL PROTECTED] wrote: Hi, I'm trying to send emails with embed and dynamic images: a normal tell a friend feature which sends

Re: [PHP] Embed images in emails

2008-05-30 Thread Iñigo Medina García
Hi Per, yep, it's true, playing with mime it can be sent as attachment, but I don't want that but embed. iñigo Bastien Koert wrote: You'll need to create a HTML email, and then embed the image with the img tag, using the entire path to the image as the source attribute Not

Re: [PHP] Embed images in emails

2008-05-30 Thread Iñigo Medina García
Hi Shawn, ey, that content-disposition: inline is new for me. Maybe it's a solution. I'll check it and tell us. thanks iñigo Per Jessen wrote: Bastien Koert wrote: You'll need to create a HTML email, and then embed the image with the img tag, using the entire path to the image as the

Re: [PHP] Embed images in emails

2008-05-30 Thread Chris
Iñigo Medina García wrote: Hi Bastien, thanks for the tip. I've already done it and it didn't run. But I'll check it again. iñigo On Thu, May 29, 2008 at 6:11 AM, Iñigo Medina García [EMAIL PROTECTED] wrote: Hi, I'm trying to send emails with embed and dynamic images: a normal

Re: [PHP] Embed images in emails

2008-05-30 Thread Iñigo Medina García
Hi Richard, yep, i know your htmlMimeMail5. Ey, it's a good work! :-) But in this case it would be easier for my work-team not to deal with objects-jargon. thanks anyway iñigo You'll need to create a HTML email, and then embed the image with the img tag, using the entire path to the image

Re: [PHP] Embed images in emails

2008-05-30 Thread Iñigo Medina García
Hi Chris, yep, phpmailer is a good work too. But it works the same i said about htmlMimeMail5. iñigo Iñigo Medina García wrote: Hi Bastien, thanks for the tip. I've already done it and it didn't run. But I'll check it again. iñigo On Thu, May 29, 2008 at 6:11 AM, Iñigo Medina

Re: [PHP] Embed images in emails

2008-05-30 Thread Per Jessen
Iñigo Medina García wrote: Hi Per, yep, it's true, playing with mime it can be sent as attachment, but I don't want that but embed. iñigo OK, then you need to revisit what Bastien said. However, instead of img referring to an external image, you need to use src=cid: where

Re: [PHP] Embed images in emails

2008-05-30 Thread Chris
Iñigo Medina García wrote: Hi Chris, yep, phpmailer is a good work too. But it works the same i said about htmlMimeMail5. So use either package to figure out what it does and how it does it - you can learn a lot from other peoples code. -- Postgresql php tutorials

Re: [PHP] Embed images in emails

2008-05-30 Thread Iñigo Medina García
Aha, I see. Perfect, Per. I'll look at this RFC. iñigo Iñigo Medina García wrote: Hi Per, yep, it's true, playing with mime it can be sent as attachment, but I don't want that but embed. iñigo OK, then you need to revisit what Bastien said. However, instead of img referring to

Re: [PHP] Embed images in emails

2008-05-30 Thread Iñigo Medina García
Iñigo Medina García wrote: Hi Chris, yep, phpmailer is a good work too. But it works the same i said about htmlMimeMail5. So use either package to figure out what it does and how it does it - you can learn a lot from other peoples code. Thanks for the advice. :-) iñigo --

Re: [PHP] Embed images in emails

2008-05-30 Thread Shawn McKenzie
Per Jessen wrote: Iñigo Medina García wrote: Hi Per, yep, it's true, playing with mime it can be sent as attachment, but I don't want that but embed. iñigo OK, then you need to revisit what Bastien said. However, instead of img referring to an external image, you need to use

[PHP] Embed images in emails

2008-05-29 Thread Iñigo Medina García
Hi, I'm trying to send emails with embed and dynamic images: a normal tell a friend feature which sends the email with item's data: author, title, image-cover, etc. Ideas PEAR and mime classes apart? thanks iñigo -- Iñigo Medina García Librería Díaz de Santos

Re: [PHP] Embed images in emails

2008-05-29 Thread Bastien Koert
On Thu, May 29, 2008 at 6:11 AM, Iñigo Medina García [EMAIL PROTECTED] wrote: Hi, I'm trying to send emails with embed and dynamic images: a normal tell a friend feature which sends the email with item's data: author, title, image-cover, etc. Ideas PEAR and mime classes apart? thanks

Re: [PHP] Embed images in emails

2008-05-29 Thread Per Jessen
Bastien Koert wrote: You'll need to create a HTML email, and then embed the image with the img tag, using the entire path to the image as the source attribute Not necessarily, images may simply be sent as an attachment with type image/jpeg etc. /Per Jessen, Zürich -- PHP General Mailing

Re: [PHP] Embed images in emails

2008-05-29 Thread Shawn McKenzie
Per Jessen wrote: Bastien Koert wrote: You'll need to create a HTML email, and then embed the image with the img tag, using the entire path to the image as the source attribute Not necessarily, images may simply be sent as an attachment with type image/jpeg etc. /Per Jessen, Zürich I

Re: [PHP] Embed images in emails

2008-05-29 Thread Richard Heyes
You'll need to create a HTML email, and then embed the image with the img tag, using the entire path to the image as the source attribute Not necessarily, images may simply be sent as an attachment with type image/jpeg etc. /Per Jessen, Zürich I haven't done it in a while but I believe you