You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pEpEngine/src/email.h

40 lines
779 B
C

/**
* @internal
* @file email.h
* @brief email (FIXME: derived from filename)
* @license GNU General Public License 3.0 - see LICENSE.txt
*/
#ifndef EMAIL_H
#define EMAIL_H
#include "transport.h"
/**
* @internal
* <!-- email_sendto() -->
*
* @brief TODO
*
* @param[in] session PEP_SESSION
* @param[in] msg message*
*
*/
PEP_STATUS email_sendto(PEP_SESSION session, const message *msg);
/**
* @internal
* <!-- email_readnext() -->
*
* @brief TODO
*
* @param[in] session PEP_SESSION
* @param[in] msg message**
* @param[in] via PEP_transport_t**
*
*/
PEP_STATUS email_readnext(PEP_SESSION session, message **msg, PEP_transport_t **via);
#endif