LibreOffice
LibreOffice 24.2 SDK API Reference
|
This interface lets a client set or get the information of a simple mail message. More...
import"XSimpleMailMessage.idl";
Public Member Functions | |
void | setRecipient ([in] string aRecipient) |
To set the recipient of the simple mail message. More... | |
string | getRecipient () |
To get the recipient of the simple mail message. More... | |
void | setCcRecipient ([in] sequence< string > aCcRecipient) |
To set the cc recipients of a simple mail message. More... | |
sequence< string > | getCcRecipient () |
To get the cc recipients of a simple mail message. More... | |
void | setBccRecipient ([in] sequence< string > aBccRecipient) |
To set the BCC recipient of a simple mail message. More... | |
sequence< string > | getBccRecipient () |
To get the BCC recipients of a simple mail message. More... | |
void | setOriginator ([in] string aOriginator) |
To set the email address of the originator of a simple mail message. More... | |
string | getOriginator () |
To get the email address of the originator of a simple mail message. More... | |
void | setSubject ([in] string aSubject) |
To set the subject of a simple mail message. More... | |
string | getSubject () |
To get the subject of a simple mail message. More... | |
void | setAttachement ([in] sequence< string > aAttachement) raises ( ::com::sun::star::lang::IllegalArgumentException ) |
To set an attachment of a simple mail message. More... | |
sequence< string > | getAttachement () |
To get the attachment of a simple mail message. More... | |
Public Member Functions inherited from XInterface | |
any | queryInterface ([in] type aType) |
queries for a new interface to an existing UNO object. More... | |
void | acquire () |
increases the reference counter by one. More... | |
void | release () |
decreases the reference counter by one. More... | |
This interface lets a client set or get the information of a simple mail message.
sequence< string > getAttachement | ( | ) |
To get the attachment of a simple mail message.
sequence< string > getBccRecipient | ( | ) |
To get the BCC recipients of a simple mail message.
If no BCC recipients have been specified an empty sequence will be returned.
sequence< string > getCcRecipient | ( | ) |
To get the cc recipients of a simple mail message.
If no cc recipients have been specified an empty sequence will be returned.
string getOriginator | ( | ) |
To get the email address of the originator of a simple mail message.
If no originator has been specified an empty string will be returned.
string getRecipient | ( | ) |
To get the recipient of the simple mail message.
string getSubject | ( | ) |
To get the subject of a simple mail message.
If no subject has been specified an empty string will be returned.
void setAttachement | ( | [in] sequence< string > | aAttachement | ) | |
raises | ( | ::com::sun::star::lang::IllegalArgumentException | |||
) |
To set an attachment of a simple mail message.
aAttachement | Sets a sequence of file URLs specifying the files that should be attached to the mail. The given file URLs must conform to Rfc1738. The method does not check if the specified file or files really exist. |
com::sun::star::lang::IllegalArgumentException | if at least one of the given file URLs is invalid (doesn't conform to Rfc1738). |
void setBccRecipient | ( | [in] sequence< string > | aBccRecipient | ) |
To set the BCC recipient of a simple mail message.
aBccRecipient | A sequence with the email addresses of one or more BCC recipients. An empty sequence means there are no BCC recipients. |
void setCcRecipient | ( | [in] sequence< string > | aCcRecipient | ) |
To set the cc recipients of a simple mail message.
aCcRecipient | Sets a sequence with the email addresses of one or more cc recipients. |
The method does not check if the given addresses are valid. An empty sequence means there are no cc recipients.
void setOriginator | ( | [in] string | aOriginator | ) |
To set the email address of the originator of a simple mail message.
aOriginator | Sets the email address of the originator of the mail. |
void setRecipient | ( | [in] string | aRecipient | ) |
To set the recipient of the simple mail message.
aRecipient | The email address of a recipient. The method doesn't check if the given email address is valid. |
void setSubject | ( | [in] string | aSubject | ) |
To set the subject of a simple mail message.
aSubject | Sets the subject of the simple mail message. |