I am having this error. Why am getting it any clue?
This is the complete error am having.
ERROR: 8 - CURL error: Could not resolve host: yahoo.com.infusionsoft.com; Host not found
This is my other php file, conn.cfg.php file.
<?php
$connInfo =array('connectionName:applicationName:i:e6256f1d838a342155f51d800945c777:This is the connection for applicationName.infusionsoft.com');
?>
This is my email.php file code.
<?php
echo "Hello World! <br/>";
include_once ('iSDK/src/isdk.php');
$myApp = new iSDK();
if ($myApp->cfgCon("testemail"))
{
echo "Connected...";
}
else
{
echo "Not Connected...";
}
$result = $myApp->sendEmail('conList','fromAddress','kamran_asadi15@yahoo.com', 'ccAddresses', 'bccAddresses', 'contentType', 'subject', 'htmlBody', 'txtBody');
print_r($result);
?>