NeoMutt  2023-03-22
Teaching an old dog new tricks
DOXYGEN
smtp.h
Go to the documentation of this file.
1
24#ifndef MUTT_SEND_SMTP_H
25#define MUTT_SEND_SMTP_H
26
27#include "config.h"
28#include <stdbool.h>
29
30#ifdef USE_SMTP
31struct AddressList;
32struct ConfigSubset;
33
34bool smtp_auth_is_valid(const char *authenticator);
35int mutt_smtp_send(const struct AddressList *from, const struct AddressList *to,
36 const struct AddressList *cc, const struct AddressList *bcc,
37 const char *msgfile, bool eightbit, struct ConfigSubset *sub);
38#endif
39
40#endif /* MUTT_SEND_SMTP_H */
bool smtp_auth_is_valid(const char *authenticator)
Check if string is a valid smtp authentication method.
Definition: smtp.c:919
int mutt_smtp_send(const struct AddressList *from, const struct AddressList *to, const struct AddressList *cc, const struct AddressList *bcc, const char *msgfile, bool eightbit, struct ConfigSubset *sub)
Send a message using SMTP.
Definition: smtp.c:1092
A set of inherited config items.
Definition: subset.h:47