MailUtils.h
author Olivier Scherler <oscherler@femto-byte.com>
Tue May 12 14:38:30 2009 +0200 (2009-05-12)
changeset 30 2befbe36c746
permissions -rw-r--r--
Changed -[MYDirectoryEvent relativePath] to work on standardised paths, in case symlinks are used. Fixes issue #28 in Murky.
     1 //
     2 //  MailUtils.h
     3 //  YourMove
     4 //
     5 //  Created by Jens Alfke on 7/13/08.
     6 //  Copyright 2008 Jens Alfke. All rights reserved.
     7 //
     8 
     9 #import <Cocoa/Cocoa.h>
    10 @class MailOutgoingMessage;
    11 
    12 
    13 @interface OutgoingEmail : NSObject 
    14 {
    15     NSString *_subject, *_body, *_sender;
    16     NSMutableArray *_toRecipients, *_attachments;
    17     MailOutgoingMessage *_message;
    18 }
    19 
    20 + (BOOL) isMailRunning;
    21 
    22 - (id) init;
    23 - (id) initWithSubject: (NSString*)subject body: (NSString*)body;
    24 
    25 @property (copy) NSString *subject, *body, *sender;
    26 @property (retain) NSMutableArray *toRecipients, *attachments;
    27 
    28 - (void) show;
    29 - (void) send;
    30 
    31 @end