1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // This header file defines the bit flags that may be used to instruct
15 // the CImMessageOperation class how to construct a new Email message
19 #if !defined (__MIUTDEF_H__)
22 /** Type for email creation flags used in the @c aMsvEmailTypeList parameter of CImEmailOperation
25 @see KMsvEmailTypeListMHTMLMessage
26 @see KMsvEmailTypeListInvisibleMessage
27 @see KMsvEmailTypeListMessageInPreparation
31 typedef TUint TMsvEmailTypeList;
33 /** Flags that a new message should be of MHTML type.
35 If this is not set, a plain-text message is created.
39 @see TMsvEmailTypeList
41 const TMsvEmailTypeList KMsvEmailTypeListMHTMLMessage = 0x00000001; // if not set Email is a "normal" (i.e. non-MHTML) Email message
42 /** Flags that a new message should be invisible.
45 @see TMsvEmailTypeList
47 const TMsvEmailTypeList KMsvEmailTypeListInvisibleMessage = 0x00000002; // if set, message stays invisible on completion
49 /** Flags that a new message should have the "in preparation" flag set.
52 @see TMsvEmailTypeList
54 const TMsvEmailTypeList KMsvEmailTypeListMessageInPreparation = 0x00000004; // if set, message stays marked "In preparation" on completion