diff options
author | Daniel Stenberg <daniel@haxx.se> | 2009-12-31 22:38:10 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2009-12-31 22:38:10 +0000 |
commit | 42d365f199f9637820de4ecdee21bc7d4668f138 (patch) | |
tree | 4e22500cd485c99ed9246b732de07bb037d37c27 /docs | |
parent | 31266ca92a3c5bb78fc355e1573c6e072f0e6bcd (diff) | |
download | curl-42d365f199f9637820de4ecdee21bc7d4668f138.tar.gz |
added descriptions for CURLOPT_MAIL_FROM and CURLOPT_MAIL_RCPT
Diffstat (limited to 'docs')
-rw-r--r-- | docs/libcurl/curl_easy_setopt.3 | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/libcurl/curl_easy_setopt.3 b/docs/libcurl/curl_easy_setopt.3 index ed6f1642a..697d49b0e 100644 --- a/docs/libcurl/curl_easy_setopt.3 +++ b/docs/libcurl/curl_easy_setopt.3 @@ -1053,6 +1053,19 @@ Pass a long to tell libcurl how to act on transfer decoding. If set to zero, transfer decoding will be disabled, if set to 1 it is enabled (default). libcurl does chunked transfer decoding by default unless this option is set to zero. (added in 7.16.2) +.SH SMTP OPTIONS +.IP CURLOPT_MAIL_FROM +Pass a pointer to a zero terminated string as parameter. It will be used to +specify the sender address in a mail when sending an SMTP mail with libcurl. + +(Added in 7.20.0) +.IP CURLOPT_MAIL_RCPT +Pass a pointer to a linked list of recipients to pass to the server in your +SMTP mail request. The linked list should be a fully valid list of \fBstruct +curl_slist\fP structs properly filled in. Use \fIcurl_slist_append(3)\fP to +create the list and \fIcurl_slist_free_all(3)\fP to clean up an entire list. + +(Added in 7.20.0) .SH TFTP OPTIONS .IP CURLOPT_TFTP_BLKSIZE Specify block size to use for TFTP data transmission. Valid range as per RFC |