Lines Matching +full:mime +full:- +full:db
21 * SPDX-License-Identifier: curl
26 * Send SMTP mime emails
34 /* This is a simple example showing how to send mime mail using libcurl's SMTP
36 * smtp-multi.c.
50 "Message-ID: <dcd7cb36-11db-487a-9f3a-e652a9458efd@"
52 "Subject: example sending a MIME-formatted message",
81 curl_mime *mime; in main() local
91 * autoresponses should have an empty reverse-path, and should be directed in main()
92 * to the address in the reverse-path which triggered them. Otherwise, in main()
113 /* Build the mime message. */ in main()
114 mime = curl_mime_init(curl); in main()
130 part = curl_mime_addpart(mime); in main()
133 slist = curl_slist_append(NULL, "Content-Disposition: inline"); in main()
137 part = curl_mime_addpart(mime); in main()
138 curl_mime_filedata(part, "smtp-mime.c"); in main()
139 curl_easy_setopt(curl, CURLOPT_MIMEPOST, mime); in main()
164 curl_mime_free(mime); in main()