Jump to content

!! My Problem With Mail() Function !!


Sara_Sa

Recommended Posts

I've AppServ Open Project - 2.4.0 for Windows & PHP Version 4.3.6

 

But when I use mail() function  I see this error :

 

Warning: 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:\appserv\www\mail.php on line 33

 

How can I use ini_set() and send email messages from local server??

 

** note: I don't have enough information about mailserver **

 

 

Link to comment
Share on other sites

To all you guys out there having problems with mail scripts throwing back this (and you know your scripts are right!!)...

 

Warning: mail() [function.mail]: "sendmail_from" not set in php.ini or custom "From:" header missing in:

 

I had started seeing this after moving some scripts from 4.3 servers to 5.

 

a dirty get around is using

 

ini_set ("sendmail_from","a.body@acompany.com");

 

to force the From header.

 

Not ideal but it works.

;)

Link to comment
Share on other sites

just copy the code onto the forum, it makes it esier for everyone to help you.

 

This is the code:

 

<html>
<head><title>Send Email</title></head>
<body bgcolor="#EEEEEE">
<center>

<form action="mail.php" method="post">

<table cellpadding=2 cellspacing=0 border=0>
<tr><td><b>Sender</b></td><td><input type="text" name="you"></td></tr>
<tr><td><b>Recipient</b></td><td><input type="text" name="to"></td></tr>
<tr><td><b>Title</b></td><td><input type="text" name="tit"></td></tr>
<tr><td><b>Message</b></td><td><textarea rows=6 cols=16 name="msg" ></textarea></td></tr>
<tr><td> </td><td><input type="submit" value="Send Now"></td></tr>
</table>

</form>

<?php
if ($_SERVER["REQUEST_METHOD"]=="POST"){
mail("$to", "$tit", "$msg","From:$you");
}
?>

</center>
</body>
</html>

 

Thank You

 

 

Link to comment
Share on other sites

Wow first of all it is a bad idea to not declare variable from a form, second of all it is a very bad idea.

 

Try this.

 

<?php
if ($_SERVER["REQUEST_METHOD"]=="POST"){
mail($_POST['to'], $_POST['tit'], $_POST['msg'],"From:" . $_POST['you']);
}
?>

</center>
</body>
</html>

 

Never refer to POST or GET variable just by their name, always define them or bad stuff can happen. That is why register_globals is turned off by default for security reasons.

 

--FrosT

Link to comment
Share on other sites

frost110

 

My basic problem was in mail() function

 

I can't send email messages from local server

 

When I test that script I see the following error message:

 

Warning: mail(): Failed to connect to mailserver at "localhost" port 25 ..etc

 

???

 

But I learned important lesson today  :)

>> Never refer to POST or GET variable just by their name, always define them.. <<

 

Thank you so much frost110

 

 

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.