* MYTask: Added -commandLine, overhauled logging.
* MYDirectoryWatcher: Overhauled logging.
* MYErrorUtils: Disabled use of Security API (so it'll build without linking against Security.framework.)
5 // Created by Jens Alfke on 7/13/08.
6 // Copyright 2008 Jens Alfke. All rights reserved.
9 #import <Cocoa/Cocoa.h>
10 @class MailOutgoingMessage;
13 @interface OutgoingEmail : NSObject
15 NSString *_subject, *_body, *_sender;
16 NSMutableArray *_toRecipients, *_attachments;
17 MailOutgoingMessage *_message;
20 + (BOOL) isMailRunning;
23 - (id) initWithSubject: (NSString*)subject body: (NSString*)body;
25 @property (copy) NSString *subject, *body, *sender;
26 @property (retain) NSMutableArray *toRecipients, *attachments;