| 682 | } |
| 683 | |
| 684 | void MessageBuilder::addRelatedAttachment(Attachment * attachment) |
| 685 | { |
| 686 | if (attachment == NULL) { |
| 687 | return; |
| 688 | } |
| 689 | if (mRelatedAttachments == NULL) { |
| 690 | mRelatedAttachments = new Array(); |
| 691 | } |
| 692 | mRelatedAttachments->addObject(attachment); |
| 693 | } |
| 694 | |
| 695 | void MessageBuilder::setBoundaryPrefix(String * boundaryPrefix) |
| 696 | { |