Re: sequential file attached to an email


[ Follow Ups ] [ Post Followup ] [ Signature.net Forum ]

Posted by Grant Foraker on August 16, 2005 at 09:57:58:

In Reply to: sequential file attached to an email posted by Marc Shevick on August 16, 2005 at 09:02:18:

This is how I attached a Comet sequential file the old way.

LET TEXT$ = ''
PRINT (EMAIL) TEXT$
LET TEXT$ = "--messagesection"
PRINT (EMAIL) TEXT$
LET TEXT$ = "Content-Type: text/plain; charset=us-ascii"
LET TEXT$ = TEXT$ + '; name="' + TEXTFILE$ + '"'
PRINT (EMAIL) TEXT$
LET TEXT$ = "Content-Transfer-Encoding: 7bit"
PRINT (EMAIL) TEXT$
LET TEXT$ = "Content-Description: Attachment"
PRINT (EMAIL) TEXT$
LET TEXT$ = 'Content-Disposition: attachment; filename="' + TEXTFILE$ + '"'
PRINT (EMAIL) TEXT$
LET TEXT$ = ''
PRINT (EMAIL) TEXT$

==================== PROCESS FILE ========================

==========================================================
LET TEXT$ = ""
PRINT (EMAIL) TEXT$
LET TEXT$ = ""
PRINT (EMAIL) TEXT$
LET TEXT$ = "--messagesection--"
PRINT (EMAIL) TEXT$

If the "PRINT (EMAIL) TEXT$" was changed to "PRINT (EMAIL) (TEXT=TEXT$) shouldn't the email client see the Comet file as an attachment.

I haven't gotten back to the new email stuff since the last set of changes to EmailPtr in June. So it's not something I've tried.


Follow Ups:



Post a Followup

Name:
E-Mail:

Subject:

What is the name of the main Signature System's Product?

Comments:

Optional Link URL:
Link Title:
Optional Image URL:

You may attach up to 5 files to your followup (see below):






[ Follow Ups ] [ Post Followup ] [ Signature.net Forum ]