Confirm a sender

Using the SDK

from cakemail.models import ConfirmSender

api.sender.confirm(
    ConfirmSender(confirmation_id='<confirmation ID>')
)
<?php

$api->sender->confirm([
    'confirm_sender' => new \Cakemail\Lib\Model\ConfirmSender([
        'confirmation_id' => '<confirmation ID>'
    ])
]);
Language
Click Try It! to start a request and see the response here!