From bfac22dc79164bab10185188e12cee313ab96de9 Mon Sep 17 00:00:00 2001 From: James <31272717+gpd-pocket-hacker@users.noreply.github.com> Date: Mon, 9 Nov 2020 16:10:37 +0000 Subject: add email support --- test_email.c | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 test_email.c (limited to 'test_email.c') diff --git a/test_email.c b/test_email.c new file mode 100644 index 0000000..9478f26 --- /dev/null +++ b/test_email.c @@ -0,0 +1,25 @@ +#include +#include + +#include "email.h" + + + + +int main (int argc, char *argv[]) +{ + + if (argc != 4) { + fprintf (stderr, "Usage:\n"); + fprintf (stderr, "\n"); + fprintf (stderr, "test_email \n"); + exit (1); + } + + + send_email (argv[1], argv[2], argv[3]); + + + return 0; +} + -- cgit v1.2.3