On Oct 28, 2004, at 9:41 PM, <barrylum at bellsouth dot net> wrote:
...
Unfortunately, the users get confused when I
say for them to attach the file to an email and send it to me. You'd be
surprised how may people have never done anything like this before this
before. One director said, "This is incredibly hard!" I'd like to
automate
the process.
Maybe try- keep it simple and construct the message in their email
software.
Try this to see what I'm talking about.
dim address, subject, body, cr as string
address = "jdoe at acme dot com"
subject = "This is the Subject"
body = "This is the body."
showurl "mailto:"+address+"?subject="+subject+"&body="+body
You can attach files also. Do a search in the archives for "showUrl
mailto" and I think you'll find what you need.
--
David
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://www.realsoftware.com/listarchives/lists.html>
|