Re: [PHP] sending attachments

2004-07-07 Thread Juan Pablo Herrera
>> Juan >> >>> - Original Message - >>> From: "Curlys" <[EMAIL PROTECTED]> >>> To: "PHP" <[EMAIL PROTECTED]> >>> Sent: Wednesday, July 07, 2004 1:04 PM >>> Subject: [PHP] sending attachments >>> >

Re: [PHP] sending attachments

2004-07-07 Thread Juan Pablo Herrera
e64 in the message body? > > Regards, > Juan > >> - Original Message - >> From: "Curlys" <[EMAIL PROTECTED]> >> To: "PHP" <[EMAIL PROTECTED]> >> Sent: Wednesday, July 07, 2004 1:04 PM >> Subject: [PHP] sending at

Re: [PHP] sending attachments

2004-07-07 Thread Juan Pablo Herrera
Hi! The class it ok. How can I put a GIF in Base64 in the message body? Regards, Juan > - Original Message - > From: "Curlys" <[EMAIL PROTECTED]> > To: "PHP" <[EMAIL PROTECTED]> > Sent: Wednesday, July 07, 2004 1:04 PM > Subject: [PHP] send

Re: [PHP] sending attachments

2004-07-07 Thread Ewout
- Original Message - From: "Curlys" <[EMAIL PROTECTED]> To: "PHP" <[EMAIL PROTECTED]> Sent: Wednesday, July 07, 2004 1:04 PM Subject: [PHP] sending attachments > can some body help me to send an email attachment ( a log file ) from php ? > Actaual

Re: [PHP] sending attachments

2004-07-07 Thread zareef ahmed
Hi, You should read something about sending headers with php's email functions. BTW... PEAR and phpclasses.org has some classes to do so. You may also use this class availabel on phpclasses.org http://www.phpclasses.org/browse/package/32.html zareef ahmed --- Curlys <[EMAIL PROTECTED]> wro

[PHP] sending attachments

2004-07-07 Thread Curlys
hi can some body help me to send an email attachment ( a log file ) from php ? Actaually i need a real guide plz thanx in advance curlys

RE: [PHP] sending attachments with mail

2001-05-19 Thread David Price
There are a few scripts listed at http://www.hotscripts.com/PHP/Scripts_and_Programs/Email_Systems/Email_Utili ties/ that might do what you want. David Price -Original Message- From: Mark Wouters [mailto:[EMAIL PROTECTED]] Sent: Saturday, May 19, 2001 3:10 PM To: [EMAIL PROTECTED] Subje

Re: [PHP] Sending attachments via mail()

2001-05-11 Thread Sean Cazzell
> I have some jpgs I'd like to send as attachments with automatically > generated (via PHP) e-mails. Does anyone have any suggestions as to how > I might go about this? Check this out: http://www.zend.com/codex.php?id=103&single=1 Regards, Sean -- PHP General Mailing List (http://www.php.n

[PHP] Sending attachments via mail()

2001-05-11 Thread Matt Adams
Hello I have some jpgs I'd like to send as attachments with automatically generated (via PHP) e-mails. Does anyone have any suggestions as to how I might go about this? Thanks Matt -- Matt Adams <[EMAIL PROTECTED]> Service Technician, Altair Electronics Voice <613.384.3876> FreeBSD/OpenBSD/

Re: [PHP] sending attachments via mail(), possible?

2001-05-09 Thread Christian Dechery
At 15:17 9/5/2001 -0400, Tym Rehm wrote: >You have to open the file and encode it. >Check out this: > >/* Define the attachment and encode it base64 */ >$filename="/var/www/sf/Ftp_User_Info.doc"; $fd = fopen($filename, "r"); >$contents = fread($fd, filesize($filename)); >$encoded=chunk_split(ba

RE: [PHP] sending attachments via mail(), possible?

2001-05-09 Thread Benjamin Munoz
t;add_attachment($data, $file_name, $file_mime_type); // send e-mail $mail->send(); Look in phpclasses.upperdesign.com or search in Google. -Ben -Original Message- From: Tym Rehm [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 09, 2001 12:18 PM To: [EMAIL PROTECTED] Subject: Re: [

Re: [PHP] sending attachments via mail(), possible?

2001-05-09 Thread Tym Rehm
quot;; # $not_mess .= "\n--$border\n"; /* Notice Subject */ $not_sub .= "FTP user setup notice"; /* Notice Headers */ $not_headers .= "From: FTP Accounts <[EMAIL PROTECTED]>\n"; $not_headers .= "X-Sender: <[EMAIL PROTECTED]>\n";

[PHP] sending attachments via mail(), possible?

2001-05-09 Thread Christian Dechery
Is it possible to send attachments via mail() function? I tried it, and it didn't work out... the email I receive is all messed up, and even the simple text part of it is screwed up. I now very little about MIME, but I really need to send an attachment, any help? It's a text attachment... Thi