SendEmailAttachText
STD.System.Email.SendEmailAttachText
STD.System.Email.SendEmailAttachText
System.Email.SendEmailAttachText
Email.SendEmailAttachText
SendEmailAttachText
( sendto, subject, body, attachment,
mimietype, filename, server, port, sender
)
sendto
A null-terminated string containing a comma-delimited list of
the addresses of the intended recipients. The validity of the
addresses is not checked, so it is the programmer's responsibility
to ensure they are all valid.
subject
A null-terminated string containing the subject line.
body
A null-terminated string containing the text of the email to
send. This must be character encoding “ISO-8859-1 (latin1)” (the ECL
default character set). Text in any other character set must be sent
as an attachment.
attachment
A null-terminated string containing the text to
attach.
mimetype
A null-terminated string containing the MIME-type of the
attachment, which may include entrymeters (such
as ‘text/plain; charset=ISO-8859-3’).
filename
A null-terminated string containing the name of the
attachment for the mail reader to
display.
server
Optional. A null-terminated string containing the name of the
mail server. If omitted, defaults to the value in the SMTPserver
environment variable.
port
Optional. An UNSIGNED4 integer value containing the port
number. If omitted, defaults to the value in the SMTPport
environment variable.
sender
Optional. A null-terminated string containing the address of
the sender. If omitted, defaults to the value in the
emailSenderAddress environment variable.
The SendEmailAttachText function
sends an email message with a text attachment.
Example:
STD.System.Email.SendEmailAttachText( 'me@mydomain.com', 'testing 1,2,3',
'this is a test message', 'this is a test attachment',
'text/plain; charset=ISO-8859-3', 'attachment.txt');