I ordered MachForm, setup was easy, everything seems to work fine except sending email by smtp. It give me a blank space instead of the success message if I tried to use smtp as the mail method, not 1 single line of error.
I quite sure my settings are correct as I use phpmailer quite often in my projects. After a couple of hrs debugging, it turns out there's incorrect path for the language file for phpmailer
File to update: /yourMachForm/lin/class.phpmailer.php ~ line 596:
function SetLanguage($lang_type, $lang_path = "lib/") {
change $lang_path = "../lib/", it will be like this:
function SetLanguage($lang_type, $lang_path = "../lib/") {
