Lines Matching refs:list
17 CURLOPT_MAIL_RCPT - list of SMTP mail recipients
30 Pass a pointer to a linked list of recipients to pass to the server in your
31 SMTP mail request. The linked list should be a fully valid list of
33 create the list and curl_slist_free_all(3) to clean up an entire list.
35 libcurl does not copy the list, it needs to be kept around until after the
47 When performing a mailing list expand (**EXPN** command), each recipient
48 should be specified using the mailing list name, such as `Friends` or
51 Using this option multiple times makes the last set list override the previous
68 struct curl_slist *list;
69 list = curl_slist_append(NULL, "root@localhost");
70 list = curl_slist_append(list, "person@example.com");
72 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, list);
74 curl_slist_free_all(list);