NeoMutt
2025-12-11-1039-g550ac6
Teaching an old dog new tricks
DOXYGEN
Toggle main menu visibility
Loading...
Searching...
No Matches
multipart.h
Go to the documentation of this file.
1
22
23
#ifndef MUTT_SEND_MULTIPART_H
24
#define MUTT_SEND_MULTIPART_H
25
26
struct
Body
;
27
struct
ParameterList;
28
29
void
mutt_generate_boundary
(
struct
ParameterList *pl);
30
struct
Body
*
mutt_make_multipart
(
struct
Body
*b);
31
struct
Body
*
mutt_remove_multipart
(
struct
Body
*b);
32
33
#endif
/* MUTT_SEND_MULTIPART_H */
mutt_remove_multipart
struct Body * mutt_remove_multipart(struct Body *b)
Extract the multipart body if it exists.
Definition
multipart.c:133
mutt_make_multipart
struct Body * mutt_make_multipart(struct Body *b)
Create a multipart email.
Definition
multipart.c:107
mutt_generate_boundary
void mutt_generate_boundary(struct ParameterList *pl)
Create a unique boundary id for a MIME part.
Definition
multipart.c:93
Body
The body of an email.
Definition
body.h:36