On 01 May 08, at 21:05, Peter Zegelin wrote:
Thanks - I have got it to work in both cases except where I add a
subject to the mailto:
This works: NSString *applicationURL = @"mailto:[EMAIL PROTECTED]
";
but this doesn't: NSString *applicationURL = @"mailto:[EMAIL PROTECTED]
- Require Registration Help ";
into: [[NSWorkspace sharedWorkspace] openURL:[NSURL
URLWithString:applicationURL]];
If I shorten the Subject to just subject=AlphaDraw it works but it
looks like any spaces are causing the method to fail.
Any suggestions what may be wrong?
You need to URL-encode the subject.
NSString *applicationURL = @"mailto:[EMAIL PROTECTED]
"
_______________________________________________
Cocoa-dev mailing list ([email protected])
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:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com
This email sent to [EMAIL PROTECTED]