Parse error: syntax error, unexpected ‘use’ (T_USE) in …/daily-email/daily-email.php on line 244
function get_constant_contact_list() {
$cc_api_key = get_option('cc_api_key');
$cc_secret_key = get_option('cc_secret_key');
$cc_access_token = get_option('cc_access_token');
use Ctct\ConstantContact;
$cc = new ConstantContact($cc_api_key);
$contacts = $cc->getContacts($cc_access_token);
$results = $contacts->results;
$email = $results[0]->email_addresses;
echo $email[0]->email_address;
}
can anyone help me? why this error is occurring? and can I fix it?
Thanks in advance
EDIT
This post has been reformatted by enclosing the code block in 3 backticks
```
on their own lines.