Contact PHP Mail Form..

Page 5 of 8 FirstFirst ... 34567 ... LastLast

  1. Posts : 10,796
    Microsoft Windows 7 Home Premium 64-bits 7601 Multiprocessor Free Service Pack 1
       #41

    Check sendmail.log file. Maybe there is relevant info. No new mail from contact.php yet
      My Computer


  2. Posts : 10,796
    Microsoft Windows 7 Home Premium 64-bits 7601 Multiprocessor Free Service Pack 1
       #42

    Did you do #35 ?? Check if you didn't make typing errors
      My Computer


  3. Posts : 10,796
    Microsoft Windows 7 Home Premium 64-bits 7601 Multiprocessor Free Service Pack 1
       #43

    Post php.ini and sendmail.ini please.
    Have to sleep now, will investigate tomorrow
      My Computer


  4. Posts : 10,796
    Microsoft Windows 7 Home Premium 64-bits 7601 Multiprocessor Free Service Pack 1
       #44

    Post mail.log as well
      My Computer


  5. Posts : 532
    Windows 8.1 64 bit
    Thread Starter
       #45

    Kaktussoft said:
    Post mail.log as well
    Alright dude, I got to take a break to.
      My Computer


  6. Posts : 10,796
    Microsoft Windows 7 Home Premium 64-bits 7601 Multiprocessor Free Service Pack 1
       #46

    Enable E-mail In PHP ? Win | PHP for everyone

    sendmail_path is pointing to right folder/file?
    smtp_port is 25?
    smtp_server is mail.shaw.ca ?
      My Computer


  7. Posts : 532
    Windows 8.1 64 bit
    Thread Starter
       #47

    Kaktussoft said:
    Enable E-mail In PHP ? Win | PHP for everyone

    sendmail_path is pointing to right folder/file?
    smtp_port is 25?
    smtp_server is mail.shaw.ca ?
    Want to do Google desktop connection so you can see exactly what I am doing, It would be easier in my opinion.
    Last edited by Rawad; 17 Oct 2013 at 13:13.
      My Computer


  8. Posts : 10,796
    Microsoft Windows 7 Home Premium 64-bits 7601 Multiprocessor Free Service Pack 1
       #48

    Post php.ini and sendmail.ini please. I can remote control your computer later
      My Computer


  9. Posts : 532
    Windows 8.1 64 bit
    Thread Starter
       #49

    Kaktussoft said:
    Post php.ini and sendmail.ini please. I can remote control your computer later

    Here is the the sendmail.ini. Where would the the php.ini be exactly located, I can't find the file.



    Code:
    ; configuration for fake sendmail
    
    ; if this file doesn't exist, sendmail.exe will look for the settings in
    ; the registry, under HKLM\Software\Sendmail
    
    [sendmail]
    
    ; you must change mail.mydomain.com to your smtp server,
    ; or to IIS's "pickup" directory.  (generally C:\Inetpub\mailroot\Pickup)
    ; emails delivered via IIS's pickup directory cause sendmail to
    ; run quicker, but you won't get error messages back to the calling
    ; application.
    
    smtp_server=mail.shaw.ca
    
    ; smtp port (normally 25)
    
    smtp_port=25
    
    ; SMTPS (SSL) support
    ;   auto = use SSL for port 465, otherwise try to use TLS
    ;   ssl  = alway use SSL
    ;   tls  = always use TLS
    ;   none = never try to use SSL
    
    smtp_ssl=auto
    
    ; the default domain for this server will be read from the registry
    ; this will be appended to email addresses when one isn't provided
    ; if you want to override the value in the registry, uncomment and modify
    
    ;default_domain=mydomain.com
    
    ; log smtp errors to error.log (defaults to same directory as sendmail.exe)
    ; uncomment to enable logging
    
    error_logfile=error.log
    
    ; create debug log as debug.log (defaults to same directory as sendmail.exe)
    ; uncomment to enable debugging
    
    ;debug_logfile=debug.log
    
    ; if your smtp server requires authentication, modify the following two lines
    
    auth_username=
    auth_password=
    
    ; if your smtp server uses pop3 before smtp authentication, modify the 
    ; following three lines.  do not enable unless it is required.
    
    pop3_server=
    pop3_username=
    pop3_password=
    
    ; force the sender to always be the following email address
    ; this will only affect the "MAIL FROM" command, it won't modify 
    ; the "From: " header of the message content
    
    force_sender=
    
    ; force the sender to always be the following email address
    ; this will only affect the "RCTP TO" command, it won't modify 
    ; the "To: " header of the message content
    
    force_recipient=
    
    ; sendmail will use your hostname and your default_domain in the ehlo/helo
    ; smtp greeting.  you can manually set the ehlo/helo name if required
    
    hostname=
      My Computer


  10. Posts : 10,796
    Microsoft Windows 7 Home Premium 64-bits 7601 Multiprocessor Free Service Pack 1
       #50

    Put this code in a file called testmail.bat. Put that file in same folder where sendmail.exe and sendmail.ini are.
    Replace the code I made red with your own email address. save the file
    Then double click on that file. What happens?
    Is a file crash.txt created in same folder?
    Is file error.log created/modified in that folder?
    Post both files

    Mail arrives in your inbox?

    Code:
    @ECHO OFF
    REM send email from command line via SMTP with sendmail
     
    ECHO From: byron@example.com > %TEMP%\temp.mail
    ECHO To: someone-else@example.com >> %TEMP%\temp.mail
    ECHO Subject: this is a test >> %TEMP%\temp.mail
    ECHO.>> %TEMP%\temp.mail
    ECHO testing. >> %TEMP%\temp.mail
    ECHO blah blah.. >> %TEMP%\temp.mail
    ECHO. >> %TEMP%\temp.mail
    ECHO blah. >> %TEMP%\temp.mail
     
    sendmail -t < %TEMP%\temp.mail
     
    DEL %TEMP%\temp.mail
    PAUSE
      My Computer


 
Page 5 of 8 FirstFirst ... 34567 ... LastLast

  Related Discussions
Our Sites
Site Links
About Us
Windows 7 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 7" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 17:24.
Find Us