1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef __com_sun_star_system_XSimpleMailMessage_idl__
21 #define __com_sun_star_system_XSimpleMailMessage_idl__
23 #include
<com
/sun
/star
/uno
/RuntimeException.idl
>
24 #include
<com
/sun
/star
/uno
/XInterface.idl
>
25 #include
<com
/sun
/star
/lang
/IllegalArgumentException.idl
>
28 module com
{ module sun
{ module star
{ module system
{
30 /** This interface lets a client set or get the information of a simple mail
35 published
interface XSimpleMailMessage
: com
::sun
::star
::uno
::XInterface
37 /** To set the recipient of the simple mail message.
39 The email address of a recipient. The method doesn't check if
40 the given email address is valid.
42 void setRecipient
( [in] string aRecipient
);
44 /** To get the recipient of the simple mail message.
46 The specified email address of a recipient
47 if any has been specified or an empty string.
49 string getRecipient
( );
51 /** To set the cc recipients of a simple mail message.
54 Sets a sequence with the email addresses of one or more cc recipients.
55 <p>The method does not check if the given addresses are valid. An empty
56 sequence means there are no cc recipients.</p>
58 void setCcRecipient
( [in] sequence
< string > aCcRecipient
);
60 /** To get the cc recipients of a simple mail message.
62 A sequence with the email addresses of one or more cc recipients.
63 <p>If no cc recipients have been specified an empty sequence will be returned.</p>
65 sequence
< string > getCcRecipient
( );
67 /** To set the BCC recipient of a simple mail message.
69 A sequence with the email addresses of one or more BCC recipients. An empty
70 sequence means there are no BCC recipients.</p>
72 void setBccRecipient
( [in] sequence
< string > aBccRecipient
);
74 /** To get the BCC recipients of a simple mail message.
76 A sequence with the email addresses of one or more BCC recipients.
77 <p>If no BCC recipients have been specified an empty sequence will be returned.</p>
79 sequence
< string > getBccRecipient
( );
81 /** To set the email address of the originator of a simple mail message.
83 Sets the email address of the originator of the mail.
85 void setOriginator
( [in] string aOriginator
);
87 /** To get the email address of the originator of a simple mail message.
89 The email address of the originator of the mail.
90 <p>If no originator has been specified an empty string will be returned.</p>
92 string getOriginator
( );
94 /** To set the subject of a simple mail message.
96 Sets the subject of the simple mail message.
98 void setSubject
( [in] string aSubject
);
100 /** To get the subject of a simple mail message.
102 The subject of the simple mail message.
103 <p>If no subject has been specified an empty string will be returned.</p>
105 string getSubject
( );
107 /** To set an attachment of a simple mail message.
109 Sets a sequence of file URLs specifying the files that should be
110 attached to the mail. The given file URLs must conform to
111 <a href="http://www.w3.org/Addressing/rfc1738.txt">Rfc1738</a>.
112 The method does not check if the specified file or files really exist.
114 @throws ::com::sun::star::lang::IllegalArgumentException
115 if at least one of the given file URLs is invalid (doesn't conform to
116 <a href="http://www.w3.org/Addressing/rfc1738.txt">Rfc1738</a>).
118 void setAttachement
( [in] sequence
< string > aAttachement
)
119 raises
( ::com
::sun
::star
::lang
::IllegalArgumentException
);
121 /** To get the attachment of a simple mail message.
123 A sequence of file URLs specifying the files that should be attached to
124 the mail or an empty sequence if no attachments have been specified.
125 The returned file URLs conform to <a href="http://www.w3.org/Addressing/rfc1738.txt">Rfc1738</a>.
127 sequence
< string > getAttachement
( );
135 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */