Home | History | Annotate | Download | only in examples

Lines Matching refs:TO

14  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 * copies of the Software, and permit persons to whom the Software is
16 * furnished to do so, under the terms of the COPYING file.
24 * IMAP example showing how to send e-mails
32 /* This is a simple example showing how to send mail using libcurl's IMAP
39 #define TO "<addressee@example.net>"
44 "To: " TO "\r\n",
50 "\r\n", /* empty line to divide headers from body, see RFC5322 */
101 * EXAMINE command to obtain the UID of the next message to create and a
102 * SELECT to ensure you are creating the message in the OUTBOX. */
105 /* In this case, we're using a callback function to specify the data. You
106 * could just use the CURLOPT_READDATA option to specify a FILE pointer to