NeoMutt
2024-10-02-37-gfa9146
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
30
struct
AddressList;
31
struct
ConfigSubset
;
32
33
bool
smtp_auth_is_valid
(
const
char
*authenticator);
34
int
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 */
smtp_auth_is_valid
bool smtp_auth_is_valid(const char *authenticator)
Check if string is a valid smtp authentication method.
Definition:
smtp.c:927
mutt_smtp_send
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
ConfigSubset
A set of inherited config items.
Definition:
subset.h:47