diff -r 000000000000 -r a1044ae95953 MailUtils.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/MailUtils.h Wed Jul 16 10:50:34 2008 -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