0byt3m1n1
Path:
/
home
/
k
/
a
/
s
/
kassiope
/
OLD
/
php
/
[
Home
]
File: subscribe.php
<?php // MailChimp $APIKey = '53bb3bcad3947b9c5b45884b439097f4-us3'; $listID = 'fd1b8baf3f'; $email = $_POST['email']; require_once('inc/MCAPI.class.php'); $api = new MCAPI($APIKey); $list_id = $listID; if($api->listSubscribe($list_id, $email) === true) { $sendstatus = 1; $message = '<div class="alert alert-success subscription-success" role="alert"><strong>Success!</strong> Check your email to confirm sign up.</div>'; } else { $sendstatus = 0; $message = '<div class="alert alert-danger subscription-error" role="alert"><strong>Error:</strong> ' . $api->errorMessage.'</div>'; } $result = array( 'sendstatus' => $sendstatus, 'message' => $message ); echo json_encode($result); ?>