#ifndef W3SMTP_H #define W3SMTP_H #include <w3types.h> typedef struct { char *recipient; char *sender; char *data; } w3Mail; w3Mail *w3CreateMail (char* rcpt, char *sender, char *data); boolean w3DestroyMail (w3Mail *mail); boolean w3SendMail (w3Mail *mail, const char *mailer, int port); boolean w3SendMailFile (const char* path); #endif