smtp-ssl.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. *
  10. * This software is licensed as described in the file COPYING, which
  11. * you should have received as part of this distribution. The terms
  12. * are also available at http://curl.haxx.se/docs/copyright.html.
  13. *
  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.
  17. *
  18. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. * KIND, either express or implied.
  20. *
  21. ***************************************************************************/
  22. #include <stdio.h>
  23. #include <string.h>
  24. #include <curl/curl.h>
  25. /* This is a simple example showing how to send mail using libcurl's SMTP
  26. * capabilities. It builds on the smtp-mail.c example to add authentication
  27. * and, more importantly, transport security to protect the authentication
  28. * details from being snooped.
  29. *
  30. * Note that this example requires libcurl 7.20.0 or above.
  31. */
  32. #define FROM "<sender@example.org>"
  33. #define TO "<addressee@example.net>"
  34. #define CC "<info@example.org>"
  35. static const char *payload_text[] = {
  36. "Date: Mon, 29 Nov 2010 21:54:29 +1100\r\n",
  37. "To: " TO "\r\n",
  38. "From: " FROM "(Example User)\r\n",
  39. "Cc: " CC "(Another example User)\r\n",
  40. "Message-ID: <dcd7cb36-11db-487a-9f3a-e652a9458efd@rfcpedant.example.org>\r\n",
  41. "Subject: SMTP SSL example message\r\n",
  42. "\r\n", /* empty line to divide headers from body, see RFC5322 */
  43. "The body of the message starts here.\r\n",
  44. "\r\n",
  45. "It could be a lot of lines, could be MIME encoded, whatever.\r\n",
  46. "Check RFC5322.\r\n",
  47. NULL
  48. };
  49. struct upload_status {
  50. int lines_read;
  51. };
  52. static size_t payload_source(void *ptr, size_t size, size_t nmemb, void *userp)
  53. {
  54. struct upload_status *upload_ctx = (struct upload_status *)userp;
  55. const char *data;
  56. if((size == 0) || (nmemb == 0) || ((size*nmemb) < 1)) {
  57. return 0;
  58. }
  59. data = payload_text[upload_ctx->lines_read];
  60. if(data) {
  61. size_t len = strlen(data);
  62. memcpy(ptr, data, len);
  63. upload_ctx->lines_read++;
  64. return len;
  65. }
  66. return 0;
  67. }
  68. int main(void)
  69. {
  70. CURL *curl;
  71. CURLcode res = CURLE_OK;
  72. struct curl_slist *recipients = NULL;
  73. struct upload_status upload_ctx;
  74. upload_ctx.lines_read = 0;
  75. curl = curl_easy_init();
  76. if(curl) {
  77. /* Set username and password */
  78. curl_easy_setopt(curl, CURLOPT_USERNAME, "user");
  79. curl_easy_setopt(curl, CURLOPT_PASSWORD, "secret");
  80. /* This is the URL for your mailserver. Note the use of smtps:// rather
  81. * than smtp:// to request a SSL based connection. */
  82. curl_easy_setopt(curl, CURLOPT_URL, "smtps://mainserver.example.net");
  83. /* If you want to connect to a site who isn't using a certificate that is
  84. * signed by one of the certs in the CA bundle you have, you can skip the
  85. * verification of the server's certificate. This makes the connection
  86. * A LOT LESS SECURE.
  87. *
  88. * If you have a CA cert for the server stored someplace else than in the
  89. * default bundle, then the CURLOPT_CAPATH option might come handy for
  90. * you. */
  91. #ifdef SKIP_PEER_VERIFICATION
  92. curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
  93. #endif
  94. /* If the site you're connecting to uses a different host name that what
  95. * they have mentioned in their server certificate's commonName (or
  96. * subjectAltName) fields, libcurl will refuse to connect. You can skip
  97. * this check, but this will make the connection less secure. */
  98. #ifdef SKIP_HOSTNAME_VERFICATION
  99. curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L);
  100. #endif
  101. /* Note that this option isn't strictly required, omitting it will result in
  102. * libcurl sending the MAIL FROM command with empty sender data. All
  103. * autoresponses should have an empty reverse-path, and should be directed
  104. * to the address in the reverse-path which triggered them. Otherwise, they
  105. * could cause an endless loop. See RFC 5321 Section 4.5.5 for more details.
  106. */
  107. curl_easy_setopt(curl, CURLOPT_MAIL_FROM, FROM);
  108. /* Add two recipients, in this particular case they correspond to the
  109. * To: and Cc: addressees in the header, but they could be any kind of
  110. * recipient. */
  111. recipients = curl_slist_append(recipients, TO);
  112. recipients = curl_slist_append(recipients, CC);
  113. curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients);
  114. /* We're using a callback function to specify the payload (the headers and
  115. * body of the message). You could just use the CURLOPT_READDATA option to
  116. * specify a FILE pointer to read from. */
  117. curl_easy_setopt(curl, CURLOPT_READFUNCTION, payload_source);
  118. curl_easy_setopt(curl, CURLOPT_READDATA, &upload_ctx);
  119. curl_easy_setopt(curl, CURLOPT_UPLOAD, 1L);
  120. /* Since the traffic will be encrypted, it is very useful to turn on debug
  121. * information within libcurl to see what is happening during the
  122. * transfer */
  123. curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
  124. /* Send the message */
  125. res = curl_easy_perform(curl);
  126. /* Check for errors */
  127. if(res != CURLE_OK)
  128. fprintf(stderr, "curl_easy_perform() failed: %s\n",
  129. curl_easy_strerror(res));
  130. /* Free the list of recipients */
  131. curl_slist_free_all(recipients);
  132. /* Always cleanup */
  133. curl_easy_cleanup(curl);
  134. }
  135. return (int)res;
  136. }