kc3-lang/smtp/src/smtp.h

Branch :


Log

Author Commit Date CI Message
f388b080 2019-04-20 10:01:01 Allow applications to override Content-Type header Applications must generate the appropriate MIME sections (if needed) when overriding the Content-Type header, and attachments added to the SMTP context will get ignored. - Applications can now set the Content-Type header - Add an HTML example program to the README - Extracted both example programs from the README and add to the build system - Corrected the size of the header list in smtp_header_exists function Fixes #3
94a86acb 2019-03-24 17:49:55 Add smtp_status_code_clear function Deprecated the smtp_status_code_set function.
c5504d4b 2019-03-24 17:32:44 Move comments to header for all exported functions
5e750f29 2019-03-24 16:47:46 Enable -Weverything and eliminate warnings Only a few warnings have been disabled in the Makefile. Also changed the smtp_attachment_add_mem interface to use a size_t for the datasz parameter.
5c44cf4b 2018-10-07 11:47:29 Replace all instances of ssize_t with long and rearranged unistd include, fixing compile errors on Windows VS.
ee6d4b2c 2018-08-21 04:29:41 Set all source files to version 1.00.
1d3a8bc0 2018-08-12 07:53:32 Minor reformatting and documentation updates.
530cf11f 2018-08-11 22:29:33 Add new cafile parameter to smtp_open function which allows the caller to explicitly provide a certificate to use instead of adding the certificate to the default certificate path.
e46b1980 2018-06-01 16:08:58 Add an SMTP client C library which consists of a header file and a C file. These two files can get included and compiled directly into another program which will allow that program to send emails to an SMTP email server.