NeoMutt  2024-04-16-36-g75b6fb
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
multipart.h
Go to the documentation of this file.
1
23#ifndef MUTT_SEND_MULTIPART_H
24#define MUTT_SEND_MULTIPART_H
25
26struct Body;
27struct ParameterList;
28
29void mutt_generate_boundary(struct ParameterList *pl);
30struct Body *mutt_make_multipart(struct Body *b);
31struct Body *mutt_remove_multipart(struct Body *b);
32
33#endif /* MUTT_SEND_MULTIPART_H */
struct Body * mutt_remove_multipart(struct Body *b)
Extract the multipart body if it exists.
Definition: multipart.c:126
struct Body * mutt_make_multipart(struct Body *b)
Create a multipart email.
Definition: multipart.c:100
void mutt_generate_boundary(struct ParameterList *pl)
Create a unique boundary id for a MIME part.
Definition: multipart.c:86
The body of an email.
Definition: body.h:36