NeoMutt  2024-03-23-23-gec7045
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
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
30struct AddressList;
31struct ConfigSubset;
32
33bool smtp_auth_is_valid(const char *authenticator);
34int mutt_smtp_send(const struct AddressList *from, const struct AddressList *to,
35 const struct AddressList *cc, const struct AddressList *bcc,
36 const char *msgfile, bool eightbit, struct ConfigSubset *sub);
37
38#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:935
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:1108
A set of inherited config items.
Definition: subset.h:47