:: com :: sun :: star :: system ::

unpublished interface XMailMessage
Usage Restrictions
not published
Description
This interface lets a client set or get the information of a mail message.

Attributes' Summary
Recipient The recipient of the mail message.  
Originator The email address of the originator of the mail.  
Subject The subject of the mail message.  
Body The body of the mail message.  
BccRecipient A sequence with the email addresses of one or more bcc recipients.  
CcRecipient A sequence with the email addresses of one or more cc recipients.  
Attachement A sequence of file URLs specifying the files that should be attached to the mail.  
Attributes' Details
Recipient
string Recipient;
Description
The recipient of the mail message.
Originator
string Originator;
Description
The email address of the originator of the mail.
Subject
string Subject;
Description
The subject of the mail message.
Body
string Body;
Description
The body of the mail message.
BccRecipient
sequence< string > BccRecipient;
Description
A sequence with the email addresses of one or more bcc recipients.
CcRecipient
sequence< string > CcRecipient;
Description
A sequence with the email addresses of one or more cc recipients.
Attachement
sequence< string > Attachement
set raises (::com::sun::star::lang::IllegalArgumentException);

Description
A sequence of file URLs specifying the files that should be attached to the mail.

The file URLs must be conform to Rfc1738.

Throws
::com::sun::star::lang::IllegalArgumentException if at least one of the given file URLs is invalid (doesn't conform to Rfc1738).
Top of Page