diff -r 000000000000 -r 256370e8935a MailUtils.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/MailUtils.h Sun May 03 10:13:31 2009 -0700 @@ -0,0 +1,31 @@ +// +// MailUtils.h +// YourMove +// +// Created by Jens Alfke on 7/13/08. +// Copyright 2008 Jens Alfke. All rights reserved. +// + +#import +@class MailOutgoingMessage; + + +@interface OutgoingEmail : NSObject +{ + NSString *_subject, *_body, *_sender; + NSMutableArray *_toRecipients, *_attachments; + MailOutgoingMessage *_message; +} + ++ (BOOL) isMailRunning; + +- (id) init; +- (id) initWithSubject: (NSString*)subject body: (NSString*)body; + +@property (copy) NSString *subject, *body, *sender; +@property (retain) NSMutableArray *toRecipients, *attachments; + +- (void) show; +- (void) send; + +@end