Re: Send an eMail attachment?

2003-03-25 Thread Ken Norris
** Date: Tue, 25 Mar 2003 09:36:19 +1000 Subject: Re: Send an eMail attachment? From: Sarah [EMAIL PROTECTED] I have written an emailer program and in helping someone else recently, I gathered together the scripts to make a demo stack to connect to a POP server and receive mail

RE: Send an eMail attachment?

2003-03-24 Thread Dan Friedman
Ken, I found Shao Sean's libSMTP library on the user contributions list... This is what I'm looking for! My only problem is that it takes 28 seconds to send an eMail with a 5307 byte text file attachment. From Outlook (with the same attachment and message), it took about 2 seconds. I wrote an

RE: Send an eMail attachment?

2003-03-24 Thread Ken Norris
** From: Ken Ray [EMAIL PROTECTED] Subject: RE: Send an eMail attachment? Date: Sun, 23 Mar 2003 18:40:27 -0600 Organization: Sons of Thunder Software Dan, Take a look at Shao Sean's libSMTP library; it allows for direct SMTP communications, attachments and more. Go to: http

RE: Send an eMail attachment?

2003-03-24 Thread Ken Norris
*** From: Ken Ray [EMAIL PROTECTED] Subject: RE: Send an eMail attachment? Date: Sun, 23 Mar 2003 18:40:27 -0600 Organization: Sons of Thunder Software Dan, Take a look at Shao Sean's libSMTP library; it allows for direct SMTP communications, attachments and more. Go to: http

Re: Send an eMail attachment?

2003-03-24 Thread Sarah
If you check the section of Shao's script where he actually sends data to the socket, you'll see that he sends each line individually. If you change this so that the entire file is sent in one hit, you will find a massive increase in speed. Sarah On Tuesday, March 25, 2003, at 03:46 am, Dan

Re: Send an eMail attachment?

2003-03-24 Thread Sarah
and the details of what comes back. Cheers, Sarah [EMAIL PROTECTED] http://www.troz.net/Rev/ On Tuesday, March 25, 2003, at 07:34 am, Ken Norris wrote: *** From: Ken Ray [EMAIL PROTECTED] Subject: RE: Send an eMail attachment? Date: Sun, 23 Mar 2003 18:40:27 -0600 Organization: Sons of Thunder

RE: Send an eMail attachment?

2003-03-24 Thread Ken Norris
** Date: Mon, 24 Mar 2003 09:54:01 -0800 Subject: RE: Send an eMail attachment? From: Dan Friedman [EMAIL PROTECTED] Ken, I found Shao Sean's libSMTP library on the user contributions list... This is what I'm looking for! -- Yep, me too. It's really pretty cool

Re: Send an eMail attachment?

2003-03-23 Thread Ken Norris
** Date: Sat, 22 Mar 2003 11:48:48 -0800 Subject: Re: Send an eMail attachment? From: Dan Friedman [EMAIL PROTECTED] Jack, Thanks... But this doesn't solve the problem. *I* want to include the attachment in the eMail. I know that I could have the user add the attachment

RE: Send an eMail attachment?

2003-03-23 Thread Ken Ray
: http://www.sonsothunder.com/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ken Norris Sent: Sunday, March 23, 2003 2:28 PM To: [EMAIL PROTECTED] Subject: Re: Send an eMail attachment? ** Date: Sat, 22 Mar 2003 11:48:48 -0800

Re: Send an eMail attachment?

2003-03-22 Thread Revinfo1155
In a message dated 3/22/03 2:04:51 PM, [EMAIL PROTECTED] writes: Greetings fellow Revolutionists, Does anyone know a way to send an eMail from a stack that includes an attachment?  I see that in RR 2.0 there is a new revMail command that acts like clicking a "mailto:" link in a browser.  For

Re: Send an eMail attachment?

2003-03-22 Thread Dan Friedman
Jack, Thanks... But this doesn't solve the problem. *I* want to include the attachment in the eMail. I know that I could have the user add the attachment, but since I know what file needs to be sent, I would like to, at runtime, set that parameter. Thanks, Dan Here's a button script that