Mail composition: add text part before html part

Fixes #2512
maint-2.1.1
Francis Lachapelle 2013-11-25 09:52:18 -05:00 committed by Jean Raby
parent 3e1cd079a8
commit 5f04b065cd
1 changed files with 6 additions and 6 deletions

View File

@ -1081,11 +1081,11 @@ static NSString *userAgent = nil;
body = [[[NGMimeMultipartBody alloc] initWithPart: message] autorelease];
[map addObject: MultiAlternativeType forKey: @"content-type"];
// Get the text part from it and add it
[body addBodyPart: [self plainTextBodyPartForText]];
// Add the HTML part
[body addBodyPart: [self bodyPartForText]];
// Get the text part from it and add it too
[body addBodyPart: [self plainTextBodyPartForText]];
}
[message setBody: body];
@ -1289,11 +1289,11 @@ static NSString *userAgent = nil;
textParts = [[NGMimeMultipartBody alloc] initWithPart: part];
// Get the text part from it and add it
[textParts addBodyPart: [self plainTextBodyPartForText]];
// Add the HTML part
[textParts addBodyPart: [self bodyPartForText]];
// Get the text part from it and add it too
[textParts addBodyPart: [self plainTextBodyPartForText]];
[part setBody: textParts];
RELEASE(textParts);