Hi, Karen -
Here's a block of code that I use in a 6.5++ app:
SET V vreturn TEXT = (CHAR(013))
SET V vatline TEXT = ('X-Attachments:' & .vFile)
DELETE c:\email.mal
OUTPUT c:\email.mal
WRITE .vmailto
WRITE .vfrom
WRITE .vsubj
WRITE 'CC:'
WRITE 'BCC:'
WRITE .vatline
WRITE .vreturn
WRITE .vsalutation
WRITE .vreturn
WRITE .vbody
OUTPUT SCREEN
SET VAR vrmail = (UDF('@RMail.DLL','C:\email.mal'))
I don't seem to see the FORMAT option - it must have been added later. But
it does look like every email does reference the CC, BCC and Attachments
lines.
And say "Hi" to Jeff - and mention that HE NEEDS TO UPGRADE HIS R:BASE!!!
Sami
____________________________
Sami Aaron
Software Management Specialists
913-915-1971
[EMAIL PROTECTED]
From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Monday, February 25, 2008 1:37 PM
To: RBASE-L Mailing List
Subject: [RBASE-L] - RMail for 6.5
Good old Jeff Ward, who's still using 6.5 for part of his Lapinator order
system, wants to start using the RMail.dll that he purchased for that
version. I've only composed emails for the RMail used in 7.x versions. Is
the format the same for 6.5? Specifically, do you still need to include
these 4 options even if they are null?
WRITE "CC:"
WRITE "BCC:"
WRITE "X-Attachments:"
WRITE "Format:T"
Karen