This forum is no longer open and is for reading/searching only.

Please use our new MachForm Community Forum instead.

MachForm Community Forums » MachForm 2

[closed] Help I am not receiving any emails when I press submit,


  1. robertgrove
    Member

    I believe that I have every thing set up right but when I try to get the form emails to be sent to me I don’t receive anything.

    Posted 16 years ago #
  2. yuniar

    Hi Robert,

    Some hosting seems to disable PHP mail() function and require you to use SMTP. This might be the cause.

    To solve this, you will need to download this file http://www.appnitro.com/class.smtp.zip

    Unzip the file and upload it into your machform/lib folder.

    Next, edit your includes/helper-functions.php file, around line 448 you will find this code:

    $mail->Host     = "127.0.0.1";
    $mail->Mailer   = "mail";
    $mail->CharSet  = 'UTF-8';


    replace the code above with this one:

    $mail->Host     = "127.0.0.1";
    $mail->Mailer   = "smtp";
    $mail->CharSet  = 'UTF-8';
    $mail->SMTPAuth = false;


    If it still doesn't work, or you are having any difficulty, please send me your FTP login info. I'll check it.

    Mail to: yuniar [at] appnitro.com


    MachForm Founder

    Posted 16 years ago #
  3. robertgrove
    Member

    I made the changes but I still did not receive an email.

    I do have a static IP address going on for my servers and when I set up my email program in order to get it to work I had to change the default smtp mail port from 25 to 366 as my company blocked port 25 to try to stop spammers.

    It might just be the port number,

    I don't mind fixing it if you can tell me how or

    if you want send me an email and I can give you the FTP address as well

    Thanks in advance, I am really digging your program, and the service :-)
    Robert

    Posted 16 years ago #
  4. yuniar

    Just a note. problem solved by using the proper hostname.


    MachForm Founder

    Posted 16 years ago #

RSS feed for this topic

Topic Closed

This topic has been closed to new replies.