iphone-common-codes-ccteam源代码 CCMail.h

//
// CCMail.h
// CCFC
//
// Created by xichen on 11-12-16.
// Copyright 2011年 ccteam. All rights reserved.
//


#import <Foundation/Foundation.h>
#import <MessageUI/MFMailComposeViewController.h>


@interface CCMail : NSObject
{

}


// 调用系统mail界面
+ (MFMailComposeViewController *)showMailView:(id)delegate
withRecipients:(NSArray *)recipients
withCcRecipients:(NSArray *)ccRecipients
withsubject:(NSString *)subject
withtextBody:(NSString *)textBody
isHTML:(BOOL)isHTML
animated:(BOOL)animated;


// returns whether the email is valid format
+ (BOOL)isValidEmailFormat:(NSString *)email;




@end

googlecode链接地址(会有更新):http://code.google.com/p/iphone-common-codes-ccteam/source/browse/trunk/CCFC/files/CCMail.h

posted @ 2011-12-31 10:06  cc_team  阅读(163)  评论(0编辑  收藏  举报