Your IP : 216.73.216.240


Current Path : /home/juvelize/martine/tmp/install_61b0f5c54c150/back/controllers/
Upload File :
Current File : /home/juvelize/martine/tmp/install_61b0f5c54c150/back/controllers/deactivate.php

<?php

namespace AcyMailing\Controllers;

use AcyMailing\Libraries\acymController;

class DeactivateController extends acymController
{
    public function saveFeedback()
    {
        $reason = acym_getVar('string', 'reason', '');
        $otherReason = acym_getVar('string', 'otherReason', '');

        $url = ACYM_FEEDBACK_URL.'saveFeedback';
        acym_makeCurlCall($url, ['reason' => $reason, 'otherReason' => $otherReason]);
        exit;
    }
}