How can I send a HTML email from Cocoa?

后端 未结 3 1193
粉色の甜心
粉色の甜心 2020-12-10 17:31

I\'m looking for a way to create a HTML formatted email from a OS X Cocoa application.

My preferred workflow would be: The user selects a menu item and the default m

3条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-10 17:53

    I was interested in this too, so two days of reverse engineering Safaris 'Mail Contents of This Page' feature and I got it working.

    UPDATE: I improved the code and put it on GitHub

    - (void)mailWebArchive:(WebArchive *)webArchive title:(NSString *)aTitle URL:(NSString *)aURL {
    NSString *bundleID = @"com.apple.mail";
    NSData* targetBundleID = [bundleID dataUsingEncoding:NSUTF8StringEncoding];
    NSAppleEventDescriptor *targetDescriptor = nil;
    NSAppleEventDescriptor *appleEvent = nil;
    
    targetDescriptor = [NSAppleEventDescriptor descriptorWithDescriptorType:typeApplicationBundleID
                                                                       data:targetBundleID];
    appleEvent = [NSAppleEventDescriptor appleEventWithEventClass:'mail'
                                                          eventID:'mlpg'
                                                 targetDescriptor:targetDescriptor
                                                         returnID:kAutoGenerateReturnID
                                                    transactionID:kAnyTransactionID];
    [appleEvent setParamDescriptor:[NSAppleEventDescriptor descriptorWithDescriptorType:'tdta'
                                                                                   data:[webArchive data]]
                        forKeyword:'----'];
    [appleEvent setParamDescriptor:[NSAppleEventDescriptor descriptorWithString:aTitle]
                        forKeyword:'urln'];
    [appleEvent setParamDescriptor:[NSAppleEventDescriptor descriptorWithString:aURL]
                        forKeyword:'url '];
    
    
    NSAppleEventDescriptor *replyDescriptor = nil;
    NSAppleEventDescriptor *errorDescriptor = nil;
    AEDesc reply = { typeNull, NULL };  
    
    // Send the AppleEvent
    OSStatus status = AESendMessage([appleEvent aeDesc],
                        &reply,
                        kAEWaitReply,
                        kAEDefaultTimeout);
    if(status == noErr)
    {
        replyDescriptor = [[[NSAppleEventDescriptor alloc] initWithAEDescNoCopy:&reply] autorelease];
        errorDescriptor = [replyDescriptor paramDescriptorForKeyword:keyErrorNumber];
        if(errorDescriptor != nil)
            status = [errorDescriptor int32Value];
    
        if(status != noErr)
            NSLog(@"%s error %d", _cmd, status);
    }
    }
    

    This code doesn't check if Mail is running, so it's only working when Mail is already started.

    The pro side of this approach that it works with all email clients which implement MailLinkSupported and MailPageSupported. See QA1722.

    The downside is that you can't set recipients like with a mailto. For this the Scripting Bridge seems the only solution. See this modified SBSendEmail sample.

提交回复
热议问题