smtp-mail.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 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 https://curl.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. * SPDX-License-Identifier: curl
  22. *
  23. ***************************************************************************/
  24. /* <DESC>
  25. * Send email with SMTP
  26. * </DESC>
  27. */
  28. #include <stdio.h>
  29. #include <string.h>
  30. #include <curl/curl.h>
  31. /*
  32. * For an SMTP example using the multi interface please see smtp-multi.c.
  33. */
  34. /* The libcurl options want plain addresses, the viewable headers in the mail
  35. * can very well get a full name as well.
  36. */
  37. #define FROM_ADDR "<sender@example.org>"
  38. #define TO_ADDR "<addressee@example.net>"
  39. #define CC_ADDR "<info@example.org>"
  40. #define FROM_MAIL "Sender Person " FROM_ADDR
  41. #define TO_MAIL "A Receiver " TO_ADDR
  42. #define CC_MAIL "John CC Smith " CC_ADDR
  43. static const char *payload_text =
  44. "Date: Mon, 29 Nov 2010 21:54:29 +1100\r\n"
  45. "To: " TO_MAIL "\r\n"
  46. "From: " FROM_MAIL "\r\n"
  47. "Cc: " CC_MAIL "\r\n"
  48. "Message-ID: <dcd7cb36-11db-487a-9f3a-e652a9458efd@"
  49. "rfcpedant.example.org>\r\n"
  50. "Subject: SMTP example message\r\n"
  51. "\r\n" /* empty line to divide headers from body, see RFC5322 */
  52. "The body of the message starts here.\r\n"
  53. "\r\n"
  54. "It could be a lot of lines, could be MIME encoded, whatever.\r\n"
  55. "Check RFC5322.\r\n";
  56. struct upload_status {
  57. size_t bytes_read;
  58. };
  59. static size_t payload_source(char *ptr, size_t size, size_t nmemb, void *userp)
  60. {
  61. struct upload_status *upload_ctx = (struct upload_status *)userp;
  62. const char *data;
  63. size_t room = size * nmemb;
  64. if((size == 0) || (nmemb == 0) || ((size*nmemb) < 1)) {
  65. return 0;
  66. }
  67. data = &payload_text[upload_ctx->bytes_read];
  68. if(data) {
  69. size_t len = strlen(data);
  70. if(room < len)
  71. len = room;
  72. memcpy(ptr, data, len);
  73. upload_ctx->bytes_read += len;
  74. return len;
  75. }
  76. return 0;
  77. }
  78. int main(void)
  79. {
  80. CURL *curl;
  81. CURLcode res = CURLE_OK;
  82. struct curl_slist *recipients = NULL;
  83. struct upload_status upload_ctx = { 0 };
  84. curl = curl_easy_init();
  85. if(curl) {
  86. /* This is the URL for your mailserver */
  87. curl_easy_setopt(curl, CURLOPT_URL, "smtp://mail.example.com");
  88. /* Note that this option is not strictly required, omitting it will result
  89. * in libcurl sending the MAIL FROM command with empty sender data. All
  90. * autoresponses should have an empty reverse-path, and should be directed
  91. * to the address in the reverse-path which triggered them. Otherwise,
  92. * they could cause an endless loop. See RFC 5321 Section 4.5.5 for more
  93. * details.
  94. */
  95. curl_easy_setopt(curl, CURLOPT_MAIL_FROM, FROM_ADDR);
  96. /* Add two recipients, in this particular case they correspond to the
  97. * To: and Cc: addressees in the header, but they could be any kind of
  98. * recipient. */
  99. recipients = curl_slist_append(recipients, TO_ADDR);
  100. recipients = curl_slist_append(recipients, CC_ADDR);
  101. curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients);
  102. /* We are using a callback function to specify the payload (the headers and
  103. * body of the message). You could just use the CURLOPT_READDATA option to
  104. * specify a FILE pointer to read from. */
  105. curl_easy_setopt(curl, CURLOPT_READFUNCTION, payload_source);
  106. curl_easy_setopt(curl, CURLOPT_READDATA, &upload_ctx);
  107. curl_easy_setopt(curl, CURLOPT_UPLOAD, 1L);
  108. /* Send the message */
  109. res = curl_easy_perform(curl);
  110. /* Check for errors */
  111. if(res != CURLE_OK)
  112. fprintf(stderr, "curl_easy_perform() failed: %s\n",
  113. curl_easy_strerror(res));
  114. /* Free the list of recipients */
  115. curl_slist_free_all(recipients);
  116. /* curl will not send the QUIT command until you call cleanup, so you
  117. * should be able to re-use this connection for additional messages
  118. * (setting CURLOPT_MAIL_FROM and CURLOPT_MAIL_RCPT as required, and
  119. * calling curl_easy_perform() again. It may not be a good idea to keep
  120. * the connection open for a very long time though (more than a few
  121. * minutes may result in the server timing out the connection), and you do
  122. * want to clean up in the end.
  123. */
  124. curl_easy_cleanup(curl);
  125. }
  126. return (int)res;
  127. }