TuyaOS
成员变量
smtp_send_request结构体 参考

#include <smtp.h>

成员变量

const char * body
 
void * callback_arg
 
smtp_result_fn callback_fn
 
const char * from
 
u8_t static_data
 
const char * subject
 
const char * to
 

详细描述

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.

结构体成员变量说明

◆ static_data

u8_t smtp_send_request::static_data

If this is != 0, data is not copied into an extra buffer but used from the pointers supplied in this struct. This means less memory usage, but data must stay untouched until the callback function is called.


该结构体的文档由以下文件生成: