This shows you the differences between two versions of the page.
|
mailers [2009/07/03 11:38] admin |
mailers [2009/07/03 11:53] (current) admin |
||
|---|---|---|---|
| Line 62: | Line 62: | ||
| Opens the mailer. //flags// can be MAILER_FLAG_DEBUG_DATA or any of the MU_STREAM_x flags. | Opens the mailer. //flags// can be MAILER_FLAG_DEBUG_DATA or any of the MU_STREAM_x flags. | ||
| The function returns 0 if successful or an error code. | The function returns 0 if successful or an error code. | ||
| + | |||
| + | ===== mu_mailer_send_fragments ===== | ||
| <code> | <code> | ||
| int mu_mailer_send_fragments(mu_mailer_t *mailer, mu_message_t msg, size_t fragsize, struct timeval *delay, mu_address_t from, mu_address_t to); | int mu_mailer_send_fragments(mu_mailer_t *mailer, mu_message_t msg, size_t fragsize, struct timeval *delay, mu_address_t from, mu_address_t to); | ||
| </code> | </code> | ||
| + | |||
| + | ===== mu_mailer_send_message ===== | ||
| + | |||
| <code> | <code> | ||
| int mu_mailer_send_message(mu_mailer_t *mailer, mu_message_t msg, mu_address_t from, mu_address_t to); | int mu_mailer_send_message(mu_mailer_t *mailer, mu_message_t msg, mu_address_t from, mu_address_t to); | ||
| </code> | </code> | ||
| + | |||
| + | Sends the message to the recipients. The function returns 0 if successful or an error code. | ||