使用C ++中的curl发送电子邮件

时间:2015-05-27 21:23:12

标签: c++ email curl cron

我写了一小段代码发送通知电子邮件,这是负责发送它的函数:

int send_mail(const char* mail_path) {
    CURL *curl;
    CURLcode curl_code;
    FILE *message;
    message = fopen(mail_path, "r");
    struct curl_slist *recipients = NULL;

    curl = curl_easy_init();
    if (curl) {
        curl_easy_setopt(curl, CURLOPT_USERNAME, "XXXX");
        curl_easy_setopt(curl, CURLOPT_PASSWORD, "YYYY");
        curl_easy_setopt(curl, CURLOPT_URL, "ZZZZ");
        recipients = curl_slist_append(recipients, "XXXX");
        curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients);
        curl_easy_setopt(curl, CURLOPT_MAIL_FROM, "XXX");
        curl_easy_setopt(curl, CURLOPT_USE_SSL, CURLUSESSL_ALL);
        curl_easy_setopt(curl, CURLOPT_READDATA, message);
        curl_easy_setopt(curl, CURLOPT_UPLOAD, 1L);

        curl_code = curl_easy_perform(curl);

        curl_slist_free_all(recipients);
        curl_easy_cleanup(curl);
    }

    return curl_code;
}

当我从命令行使用它时它工作正常。

虽然脚本是通过我使用的远程服务器上的cron管理器执行的,但它不会发送电子邮件。我也可以通过服务器的cli正确发送电子邮件。

代码似乎停止了curl_easy_perform步骤,但我不确定为什么 - 调试这类问题有什么技巧可用?

Cron的工作也在自己创建电子邮件 - 这可能是问题的原因吗?

编辑:

我检查了日志,似乎在cron管理器的情况下,我正在尝试连接的谷歌smtp服务的IP地址与直接从命令行运行的脚本的情况不同。来自cron的日志在354 Go ahead之后结束。除此之外,日志是相同的。

的cron:

* Rebuilt URL to: smtp://smtp.gmail.com:587/
*   Trying 173.194.71.108...

...

> DATA
< 354  Go ahead ra7sm645322lbb.27 - gsmtp
---- stops here ----

命令行:

* Rebuilt URL to: smtp://smtp.gmail.com:587/
*   Trying 74.125.195.109...

...

< 354  Go ahead ex5sm4631837wib.2 - gsmtp
< 250 2.0.0 OK 1432828708 ex5sm4631837wib.2 - gsmtp
* Connection #0 to host smtp.gmail.com left intact

1 个答案:

答案 0 :(得分:1)

  1. 启用CURLOPT_VERBOSE至1L

  2. 记录失败尝试的stderr并在失败后进行研究

  3. 不,cronjobs发送自己的邮件的事实并不是此代码失败的原因。