Files | |
| file | smtp.c |
| SMTP example implementation. | |
| file | smtp.h |
| SMTP header file. | |
Defines | |
| #define | SMTP_ERR_OK 0 |
| Error number that signifies a non-error condition. | |
Functions | |
| void | smtp_done (unsigned char error) |
| Callback function that is called when an e-mail transmission is done. | |
| void | smtp_configure (char *localhostname, u16_t *smtpserver) |
| Specificy an SMTP server and hostname. | |
| unsigned char | smtp_send (char *to, char *from, char *subject, char *msg, u16_t msglen) |
| Send an e-mail. | |
|
||||||||||||
|
Specificy an SMTP server and hostname. This function is used to configure the SMTP module with an SMTP server and the hostname of the host.
|
|
|
Callback function that is called when an e-mail transmission is done. This function must be implemented by the module that uses the SMTP module.
|
|
||||||||||||||||||||||||
|
Send an e-mail.
|
Here is the call graph for this function:

1.3.3