SBSendMail, from Apple's Scripting Bridge example,  gives an error on:

[[emailMessage.content attachments] addObject: theAttachment];

The header file, Mail.h, does not have "content" for a new outgoing message, 
which doesn't make any sense, since the example sets the property "content" at 
the outset.

I used instead:  [[[emailMessage content] attachments] addObject: 
theAttachment];

But get a warning error that says "MailOutgoingMessage may not respond to 
content".

However, it does respond and the attachment is attached to the email.

It would seem that I shouldn't get an error message?

BTW I used: [NSURL fileURLWithPath:attachmentFilePath isDirectory:(BOOL)NO] 
instead of the example code.

Best regards,

John MacMullin
_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to