MailGun取消订阅

时间:2018-07-20 16:14:27

标签: php curl mailgun

我正在使用PHP的CURL函数使用MailGun返回我域中所有未订阅的电子邮件。我尝试了以下代码:

function get_unsubscriptions() {
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
    curl_setopt($ch, CURLOPT_USERPWD, 'api:key-[key removed]');
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
    curl_setopt($ch, CURLOPT_URL, 'https://api.mailgun.net/v3/[domain removed]/unsubscriptions');

    $result = curl_exec($ch);

    curl_close($ch);
    return $result;
}

但是它只返回以下内容:

  

Mailgun Magnificent API

我在做什么错了?

0 个答案:

没有答案