51
51
def make_mime_message(message_id, body='body', headers=None, hidden=False,
59
57
if attachment_type is not None:
61
59
attachment.set_payload('attactment data.')
62
60
attachment['Content-Type'] = attachment_type
63
61
attachment['Content-Disposition'] = 'attachment; filename="file.ext"'
65
67
return make_json_message(message_id, message.as_string())