Has any got this working using Illuvatar's rendition? When I used just Zacherys instructions, it sends emails, but some get bounced even when their good valid addresses. I tried using Illuvatar's fix but get all kinds of errors. part of it is that his instruction have a piece of code repeated twice in them.
PHP Code:
$mailObj = new SmtpMail($toemail, $subject, $message, $header, $vboptions['webmasteremail'], (boolean)$vboptions['needfromemail']);
}
else
{
$mailObj = new Mail($toemail, $subject, $message, $header, $vboptions['webmasteremail'], (boolean)$vboptions['needfromemail']);
}
return $mailObj->success;
}
this section ends up in functions.php twice if you just copy in past from his .txt file. who has this working?