| 231 | } |
| 232 | |
| 233 | static struct mailmime * get_other_text_part(MessageBuilder * builder, |
| 234 | const char * mime_type, const char * charset, const char * content_id, |
| 235 | const char * description, |
| 236 | const char * text, size_t length, clist * contentTypeParameters) |
| 237 | { |
| 238 | return get_text_part(builder, mime_type, charset, content_id, description, text, length, MAILMIME_MECHANISM_QUOTED_PRINTABLE, contentTypeParameters); |
| 239 | } |
| 240 | |
| 241 | static struct mailmime * get_file_part(MessageBuilder * builder, |
| 242 | const char * filename, const char * mime_type, int is_inline, |
no test coverage detected