jens@17: // jens@17: // MailUtils.h jens@17: // YourMove jens@17: // jens@17: // Created by Jens Alfke on 7/13/08. jens@17: // Copyright 2008 Jens Alfke. All rights reserved. jens@17: // jens@17: jens@17: #import jens@17: @class MailOutgoingMessage; jens@17: jens@17: jens@17: @interface OutgoingEmail : NSObject jens@17: { jens@17: NSString *_subject, *_body, *_sender; jens@17: NSMutableArray *_toRecipients, *_attachments; jens@17: MailOutgoingMessage *_message; jens@17: } jens@17: jens@17: + (BOOL) isMailRunning; jens@17: jens@17: - (id) init; jens@17: - (id) initWithSubject: (NSString*)subject body: (NSString*)body; jens@17: jens@17: @property (copy) NSString *subject, *body, *sender; jens@17: @property (retain) NSMutableArray *toRecipients, *attachments; jens@17: jens@17: - (void) show; jens@17: - (void) send; jens@17: jens@17: @end