NeoMutt  2024-03-23-23-gec7045
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
sendmail.h
Go to the documentation of this file.
1
23#ifndef MUTT_SEND_SENDMAIL_H
24#define MUTT_SEND_SENDMAIL_H
25
26#include <stdbool.h>
27
28struct AddressList;
29struct ConfigSubset;
30struct Mailbox;
31
32int mutt_invoke_sendmail(struct Mailbox *m, struct AddressList *from,
33 struct AddressList *to, struct AddressList *cc,
34 struct AddressList *bcc, const char *msg,
35 bool eightbit, struct ConfigSubset *sub);
36
37#endif /* MUTT_SEND_SENDMAIL_H */
int mutt_invoke_sendmail(struct Mailbox *m, struct AddressList *from, struct AddressList *to, struct AddressList *cc, struct AddressList *bcc, const char *msg, bool eightbit, struct ConfigSubset *sub)
Run sendmail.
Definition: sendmail.c:297
A set of inherited config items.
Definition: subset.h:47
A mailbox.
Definition: mailbox.h:79
struct ConfigSubset * sub
Inherited config items.
Definition: mailbox.h:83