ReactOS 0.4.16-dev-716-g2b2bdab
|
#include <smtp.h>
Public Attributes | |
const char * | from |
const char * | to |
const char * | subject |
const char * | body |
smtp_result_fn | callback_fn |
void * | callback_arg |
u8_t | static_data |
This structure is used as argument for smtp_send_mail_int(), which in turn can be used with tcpip_callback() to send mail from interrupt context, e.g. like this: struct smtp_send_request req; (to be filled) tcpip_try_callback(smtp_send_mail_int, (void)req);
For member description, see parameter description of smtp_send_mail(). When using with tcpip_callback, this structure has to stay allocated (e.g. using mem_malloc/mem_free) until its 'callback_fn' is called.
smtp_result_fn smtp_send_request::callback_fn |
u8_t smtp_send_request::static_data |