Jump to content

php configuration for email


garydt

Recommended Posts

What is the php configuration for email? It works on the server but sending email on my testing server doesn't work.

Here's what in my php.ini file-

[mail function]
; For Win32 only.
SMTP smtp@tiscali.co.uk
smtp_port = 25

; For Win32 only.
sendmail_from = gary@garyt.co.uk

Link to comment
Share on other sites

your server probably requires authentication

 


; 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

pop3_server=mail.yourdomain.com
pop3_username=you@yourdomain.com
pop3_password=mysecretpassword

Link to comment
Share on other sites

Thanks,

I did that and i still get-

Warning: mail() [function.mail]: Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in C:\Program Files\xampp\htdocs\epeople\emailsend.php on line 31

Link to comment
Share on other sites

to be trueful one of these should work,

 

SMTP = smtp.tiscali.co.uk
sendmail_from = garydt88@tiscali.co.uk

smtp_port = 25
;auth_username= garydt88@tiscali.co.uk
;auth_password= *****

 

SMTP = smtp.tiscali.co.uk
sendmail_from = garydt88@tiscali.co.uk

smtp_port = 25
auth_username= garydt88@tiscali.co.uk
auth_password= *****

 

maybe get the php.ini off of the server and compare, or create a phpinfo(); and check the setting on the server

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

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

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  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...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.