smtp-client.h revision c25356d5978632df6203437e1953bcb29e0c736f
#ifndef SMTP_CLIENT_H
#define SMTP_CLIENT_H
#include <stdio.h>
struct smtp_client *smtp_client_open(const char *destination,
const char *return_path, FILE **file_r);
/* Returns sysexits-compatible return value */
int smtp_client_close(struct smtp_client *client);
#endif