CURLOPT_MAIL_RCPT.3 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. .\"
  25. .TH CURLOPT_MAIL_RCPT 3 "19 Jun 2014" libcurl libcurl
  26. .SH NAME
  27. CURLOPT_MAIL_RCPT \- list of SMTP mail recipients
  28. .SH SYNOPSIS
  29. .nf
  30. #include <curl/curl.h>
  31. CURLcode curl_easy_setopt(CURL *handle, CURLOPT_MAIL_RCPT,
  32. struct curl_slist *rcpts);
  33. .SH DESCRIPTION
  34. Pass a pointer to a linked list of recipients to pass to the server in your
  35. SMTP mail request. The linked list should be a fully valid list of
  36. \fBstruct curl_slist\fP structs properly filled in. Use
  37. \fIcurl_slist_append(3)\fP to create the list and \fIcurl_slist_free_all(3)\fP
  38. to clean up an entire list.
  39. When performing a mail transfer, each recipient should be specified within a
  40. pair of angled brackets (<>), however, should you not use an angled bracket as
  41. the first character libcurl will assume you provided a single email address
  42. and enclose that address within brackets for you.
  43. When performing an address verification (\fBVRFY\fP command), each recipient
  44. should be specified as the user name or user name and domain (as per Section
  45. 3.5 of RFC 5321).
  46. When performing a mailing list expand (\fBEXPN\fP command), each recipient
  47. should be specified using the mailing list name, such as "Friends" or
  48. "London-Office".
  49. .SH DEFAULT
  50. NULL
  51. .SH PROTOCOLS
  52. SMTP
  53. .SH EXAMPLE
  54. .nf
  55. CURL *curl = curl_easy_init();
  56. if(curl) {
  57. struct curl_slist *list;
  58. list = curl_slist_append(NULL, "root@localhost");
  59. list = curl_slist_append(list, "person@example.com");
  60. curl_easy_setopt(curl, CURLOPT_URL, "smtp://example.com/");
  61. curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, list);
  62. ret = curl_easy_perform(curl);
  63. curl_slist_free_all(list);
  64. curl_easy_cleanup(curl);
  65. }
  66. .fi
  67. .SH AVAILABILITY
  68. Added in 7.20.0. The \fBVRFY\fP and \fBEXPN\fP logic was added in 7.34.0
  69. .SH RETURN VALUE
  70. Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.
  71. .SH "SEE ALSO"
  72. .BR CURLOPT_MAIL_FROM "(3), " CURLOPT_MAIL_AUTH "(3), "