I'm able to send a gmail message using the following curl statement.
I'm trying to mimic this in C++ using libcurl using an example I found online but I receive a CURLE_SSL_CACERT error response in curl_easy_perform.
I'm also pretty sure we are building libcurl with SSL, but I'm not sure exactly how to verify that.
static const char *payload_text[]={
"Date: Mon, 29 Nov 2010 21:54:29 +1100\n",
"To: " TO "\n",
"From: " FROM "(Example User)\n",
"Cc: " CC "(Another example User)\n",
"Subject: SMTP TLS example message\n",
"\n", /* empty line to divide headers from body, see RFC5322 */
"The body of the message starts here.\n",
"\n",
"It could be a lot of lines, could be MIME encoded, whatever.\n",
"Check RFC5322.\n",
NULL
};
struct upload_status {
int lines_read;
};
static size_t payload_source(void *ptr, size_t size, size_t nmemb, void *userp)
{
struct upload_status *upload_ctx = (struct upload_status *)userp;
const char *data;
if ((size == 0) || (nmemb == 0) || ((size*nmemb) < 1)) {
return 0;
}
data = payload_text[upload_ctx->lines_read];
if (data) {
size_t len = strlen(data);
memcpy(ptr, data, len);
upload_ctx->lines_read ++;
return len;
}
return 0;
}
bool SendMessage()
{
struct curl_slist *recipients = NULL;
struct upload_status upload_ctx;
upload_ctx.lines_read = 0;
CURL* handle = ::curl_easy_init( );
curl_easy_setopt(handle, CURLOPT_USE_SSL, CURLUSESSL_ALL);
curl_easy_setopt(handle, CURLOPT_PASSWORD, "xxxxxxx");
curl_easy_setopt(handle, CURLOPT_MAIL_FROM, FROM);
recipients = curl_slist_append(recipients, TO);
recipients = curl_slist_append(recipients, CC);
curl_easy_setopt(handle, CURLOPT_MAIL_RCPT, recipients);
curl_easy_setopt(handle, CURLOPT_READFUNCTION, payload_source);
curl_easy_setopt(handle, CURLOPT_READDATA, &upload_ctx);
curl_easy_setopt(handle, CURLOPT_VERBOSE, 1);
CURLcode code = ::curl_easy_perform(handle);
curl_slist_free_all(recipients);
curl_easy_cleanup(handle);
}
Thanks for any help.