NeoMutt  2025-12-11-435-g4ac674
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
smtp.h
Go to the documentation of this file.
1
23
24#ifndef MUTT_SEND_SMTP_H
25#define MUTT_SEND_SMTP_H
26
27#include <stdbool.h>
28
29struct AddressList;
30struct ConfigSubset;
31
32bool smtp_auth_is_valid(const char *authenticator);
33int mutt_smtp_send(const struct AddressList *from, const struct AddressList *to,
34 const struct AddressList *cc, const struct AddressList *bcc,
35 const char *msgfile, bool eightbit, struct ConfigSubset *sub);
36
37#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:927
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:1100
A set of inherited config items.
Definition subset.h:46