Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 694 results for
mailserver
- Page 1
MailServer Connection
Programming
Web Development
18 Years Ago
by omesa
… 'register' page, Warning: mail() [function.mail]: Failed to connect to
mailserver
at "localhost" port 25, verify your "SMTP… I would like to know how to setup a local
mailserver
, just for testing purposes for my pages. I would like…and/or any suggestions of how I can obtain a
mailserver
that I can use on a local machine. Thanks in…
Re: Mailserver
Programming
Web Development
15 Years Ago
by phpDave
…; Error is: Warning: mail() [function.mail]: Failed to connect to
mailserver
at "localhost" port 25, verify your "SMTP…
Re: Mailserver
Programming
Web Development
15 Years Ago
by diskhub
…(.........); would stop: Warning: mail() [function.mail]: Failed to connect to
mailserver
at "localhost" port 25, verify your "SMTP…
need help, iptables configure two webservers+mailserver
Hardware and Software
Networking
17 Years Ago
by reedone816
…, when i just have one webserver and one
mailserver
, the routing is ok, but when i add…gt;pc gateway (linux red hat enterprise 5.1)-->
mailserver
(windows) |------------------------------------------> webserver B(IIS windows) |------------------------------------------> …
Need Help : Failed to connect to mailserver
Programming
Web Development
16 Years Ago
by furqan219
… error message Warning: mail() [function.mail]: Failed to connect to
mailserver
at "localhost" port 25, verify your "SMTP… line 34 Warning: mail() [function.mail]: Failed to connect to
mailserver
at "localhost" port 25, verify your "SMTP…
how to creat new account from mailserver in c#
Programming
Software Development
15 Years Ago
by shobhitzone
Hi Everyone, i m creating new mailaccount on
mailserver
. i will send username and password from my webservice as … will go to the server than ceate new account on
mailserver
. for Example domain name - dser.com username - [email]abc@dser…
Re: how to creat new account from mailserver in c#
Programming
Software Development
15 Years Ago
by kvprajapati
It depends upon the
MailServer
and API. Use settings/configuration option to set new user information.
Re: how to creat new account from mailserver in c#
Programming
Software Development
15 Years Ago
by shobhitzone
i have
mailserver
details and domain name. which API use in c#. can u send me the code . i will change code according the requirment. Thanks Shobhit
Failed to connect to mailserver at "localhost" port 25...
Programming
Web Development
14 Years Ago
by ivanwafoo
…);[/CODE] however this error shows up Failed to connect to
mailserver
at "localhost" port 25, verify your "SMTP…
Failed to connect to mailserver
Programming
Web Development
13 Years Ago
by vanpersie
…;Green"]Warning: mail() [function.mail]: Failed to connect to
mailserver
at "localhost" port 25, verify your "SMTP…
Mail() [Function.mail]: Failed To Connect To Mailserver At "localhost" Port 25,
Programming
Web Development
13 Years Ago
by brainfo
… error like [CODE]Mail() [Function.mail]: Failed To Connect To
Mailserver
At "localhost" Port 25, Verify Your "smtp…
Re: Mail() [Function.mail]: Failed To Connect To Mailserver At "localhost" Port 25,
Programming
Web Development
13 Years Ago
by ppt123
mail() [function.mail]: Failed to connect to
mailserver
at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini. SNIP
Failed to connect to mailserver. Contact Form PHP
Programming
Web Development
13 Years Ago
by George_91
… my browser: *Warning: mail() [function.mail]: failed to connect to
mailserver
at "localhost" port 25, verify your "SMTP…
Re: MailServer Connection
Programming
Web Development
18 Years Ago
by KeithMcL
Just do a search on G for [I]Your OS +mail server[/I], replaceing Your OS with the OS you use :)
Re: MailServer Connection
Programming
Web Development
17 Years Ago
by Sylviana
Try this one - it's free for under 5 users, and works on most of Linux distributions: [url]http://www.axigen.com/mail-server/free.php[/url]
mailserver
Hardware and Software
Linux and Unix
16 Years Ago
by WANGANGA
how can I configure a complete mailsever using suse linux
Re: mailserver
Hardware and Software
Linux and Unix
16 Years Ago
by DimaYasny
by using google
Re: mailserver
Hardware and Software
Linux and Unix
16 Years Ago
by BillBrown
Yup. You're likely to find a great deal of information if you use a Google search. Try searching for: "suse postfix install howto". Postfix will be your SMTP but you'll need a POP3/IMAP solution. I'd recommend Dovecot. It's relatively easy and it works well. Installing a mail server can be easy, especially with the packages being …
Mailserver
Programming
Web Development
15 Years Ago
by phpDave
Hi, I''m trying to learn how to send emails to registered users with php mail function. Been online a lot and getting confused. I was wondering if anyone could explain how the set up is done and what is needed to accomplish this task. Any input on this topic would be appreciated. Thankyou.
Re: Mailserver
Programming
Web Development
15 Years Ago
by Will Gresham
What code are you using at the moment and what errors (if any) does it return?
Re: Mailserver
Programming
Web Development
15 Years Ago
by Larry_b
I'm not sure why you are sending from localhost. That may be the problem. I was having a problem with email a while back. Can't remember the error message. This code seems to work. Anyway, you might give it a try. [code] $headers = "MIME-Version: 1.0" . "\r\n"; $headers .= "Content-type:text/html;charset=iso…
Re: Mailserver
Programming
Web Development
15 Years Ago
by Larry_b
Hi Dave, Just read your post on passwords. I think that answer to your problem was correct. You don't have a mail server on your localhost. Or it's not set up correctly. Can you test this on an external server? Larry
Re: Mailserver
Programming
Web Development
15 Years Ago
by phpDave
I just singed up with a web hosting company. I'll have to learn how to use that before I can test emails. Open to any comments about the configuration though, or any good tutorials or books.
Re: Mailserver
Programming
Web Development
15 Years Ago
by Larry_b
Hi Dave, Although you can probably find a book on this. I hate to see you incur the expense when it's really a very simple procedure. You can probably get all of this help from the technical aid at the hosting company, which is very little. First you need to find the ftp (file transfer protical) in the host companie's website. Then you upload…
Re: Mailserver
Programming
Web Development
15 Years Ago
by diskhub
Hi Dave, Like Larry said, you will need to use a web host as PHP mail proberly isnt enabled on your localhost. Try something like: [code] <?php $eol = "\r\n"; $to = ""; //the recipitant $subject = ""; // the subject $message = ""; // the message $headers = "From: Your name<no-reply@your-domain&…
Re: Mailserver
Programming
Web Development
15 Years Ago
by Larry_b
Hi diskhub, I was wondering if you tell me what the @ before php functions does? I see it around a lot. Thanks, Larry
Re: Mailserver
Programming
Web Development
15 Years Ago
by Larry_b
Ah, very good! Thanks for the reply! Larry
Re: Mailserver
Programming
Web Development
15 Years Ago
by phpDave
Thanks for info.
Re: Need Help : Failed to connect to mailserver
Programming
Web Development
16 Years Ago
by Tulsa
hi i used mail function that time it's worked perfectly but i used this from directly server. so i think you use this from local pc so may be you need to do some setting in php.ini file ya smtp port this solution you should get from the google search ok Thanks
Re: Need Help : Failed to connect to mailserver
Programming
Web Development
16 Years Ago
by Josh Connerty
Is this on the local server or a remote host? If this is on a webserver then your host should set this up for you. Else if it is on local host it is not worth setting up. Just suppress it with and @ infront of the mail function. When you upload to a webserver it will work properly. If you [b]really[/b] want to set it up so you send mail then …
1
2
3
12
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
Backlink Auditor
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC