I am using PHP iSDK API for sending email. This is my email sending file.
<?php
echo "Hello World! <br/>";
include('iSDK/src/isdk.php');
$myApp = new iSDK();
if ($myApp->cfgCon("connectionName")){
echo "Connected...";
}else{
echo "Not Connected...";
}
$myApp->sendEmail('conList','hassan.nazir.786@gmail.com','kamran_asadi15@yahoo.com', 'ccAddresses', 'bccAddresses', 'contentType', 'subject', 'htmlBody', 'txtBody');
?>
This is other .conf page.
<?php
$connInfo = array('connectionName:infusionsoft.com:i:APIKEYGOESHERE:This is the connection for applicationName.infusionsoft.com');
?>
But I am not getting any email, what could be the problem?
Thanks in advance.