Jump to content

Recommended Posts

Posted

I've read through a number of threads here on cgi and php with respects to form processing. I've not been able to get any of the php form scripts to work. I keep getting 'sorry your mail did not go through, due to some problem with php server'. I tried to use the cgimail that is pre installed, but when I download it in ASCII format, it looks like gibberish, as it does when I download it in binary. I also was unable to get the ultimate mail thingy to run, it kept giving me 500 errors. I finally tried Novice Mail. I thought I had hit paydirt, as once I had configured the script for smtp and pointed towards mail.xxxxx.xxx, the script appeared to run. It returned my success page url. However, the mail does not go through. Any suggestions?

Posted

Welcome to the forums :thumbup1:

 

Have you got the email address set correctly for where you are trying to send to?

 

From the readme file;

(REMEMBER THE \ BEFORE THE @ SIGN example: \@)

$sendto = "sendto\@******";  CORRECT WAY!!!!

$sendto = "sendto@******";  WILL NOT WORK!!!!

 

If you are using "SMTP" rather than "sendmail" you will need to add a valid email address and password to authenticate that you are a valid account to send emails.

 

If you PM me with your domain name, I'll have a quick look, and see if I can see the issue.

Posted

Having had a quick look, I would set it to use the sendmail option, and the following location for the sendmail.

        $useLib = "sendmail";

 

        $mailprog = "/usr/sbin/sendmail"; ## $mailprog  Is the path to sendmail on your server  ##

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...