KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mule > providers > email > MailProperties


1 /*
2  * $Id: MailProperties.java 3798 2006-11-04 04:07:14Z aperepel $
3  * --------------------------------------------------------------------------------------
4  * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com
5  *
6  * The software in this package is published under the terms of the MuleSource MPL
7  * license, a copy of which has been included with this distribution in the
8  * LICENSE.txt file.
9  */

10
11 package org.mule.providers.email;
12
13 /**
14  * Mail properties that are sent on the MuleMessage when receiving a Mail Message or
15  * which can be set on the endpoint or event to be added to outgoing mail
16  */

17 public interface MailProperties
18 {
19     /**
20      * Event properties
21      */

22     public static final String JavaDoc CONTENT_TYPE_PROPERTY = "contentType";
23     public static final String JavaDoc TO_ADDRESSES_PROPERTY = "toAddresses";
24     public static final String JavaDoc CC_ADDRESSES_PROPERTY = "ccAddresses";
25     public static final String JavaDoc BCC_ADDRESSES_PROPERTY = "bccAddresses";
26     public static final String JavaDoc FROM_ADDRESS_PROPERTY = "fromAddress";
27     public static final String JavaDoc REPLY_TO_ADDRESSES_PROPERTY = "replyToAddresses";
28     public static final String JavaDoc SUBJECT_PROPERTY = "subject";
29     public static final String JavaDoc CUSTOM_HEADERS_MAP_PROPERTY = "customHeaders";
30     public static final String JavaDoc SENT_DATE_PROPERTY = "sentDate";
31 }
32
Popular Tags