deeboss
31st August 2001, 16:37
I am so excited to find a group of Baan techies, I can hardly stand it!!! James, thanks again for yesterday's answer! Today's question:
I use the following code to send an email from within Baan IV:
if send.email then
msg = "mailx -s """ & subject & """ " & email.list & " < " &
temp.file
msg = strip$(msg)
ret = shell(msg, SHELL_BACKGROUND)
endif
...where subject is a variable holding the Subject,
email.list is a variable holding the, yes, email list of recipients, and
temp.file is a variable holding the body of the email.
Does anyone know of a way I can send an email with a file attachment?
I use the following code to send an email from within Baan IV:
if send.email then
msg = "mailx -s """ & subject & """ " & email.list & " < " &
temp.file
msg = strip$(msg)
ret = shell(msg, SHELL_BACKGROUND)
endif
...where subject is a variable holding the Subject,
email.list is a variable holding the, yes, email list of recipients, and
temp.file is a variable holding the body of the email.
Does anyone know of a way I can send an email with a file attachment?