Free PHP e-mail client

 
Post new topic   Reply to topic    Aprelium Forum Index -> General Questions
View previous topic :: View next topic  
Author Message
Francisco 2002
-


Joined: 01 Oct 2003
Posts: 33
Location: Brazil (GMT -3 hours)

PostPosted: Thu Oct 27, 2005 8:29 pm    Post subject: Free PHP e-mail client Reply with quote

Please, I need a free PHP e-mail client to run with Abyss.
Can you help-me?
Thank you
Francisco
_________________
Lojistas.net ( www.lojistas.net ) and ComVir.org ( www.comvir.org )
Back to top View user's profile Send private message
AbyssUnderground
-


Joined: 31 Dec 2004
Posts: 3855

PostPosted: Thu Oct 27, 2005 8:36 pm    Post subject: Reply with quote

Just use the php mail() function. Search for it at www.php.net.
_________________
Andy (AbyssUnderground) (previously The Inquisitor)
www.abyssunderground.co.uk
Back to top View user's profile Send private message Visit poster's website
Francisco 2002
-


Joined: 01 Oct 2003
Posts: 33
Location: Brazil (GMT -3 hours)

PostPosted: Fri Oct 28, 2005 5:02 pm    Post subject: Reply with quote

Hi Andy
I need a PHP script e-mail client.
You know some?
Thank you
Francisco
_________________
Lojistas.net ( www.lojistas.net ) and ComVir.org ( www.comvir.org )
Back to top View user's profile Send private message
AbyssUnderground
-


Joined: 31 Dec 2004
Posts: 3855

PostPosted: Fri Oct 28, 2005 5:16 pm    Post subject: Reply with quote

Here are two simple files for this:


Name as "contact.php"
Code:
<form name="form1" action="post.php" method="post">
<table border="0">

<tr>
<td><font size="1">Your Name:
<td><font size="1"><input type="text" size="56" name="name">

<tr>
<td><font size="1">Your E-Mail Address:
<td><font size="1"><input type="text" size="56" name="email">

<tr>
<td colspan="2"><font size="1">Your Message/Question/Comment:<br>
<textarea rows="10" cols="82" name="message"></textarea><br>
<tr>
<td colspan="2">
<input type="submit" name="submit" value="Post Message">
</form>
</table>



Name as "post.php"
Code:
<?php

if ($_POST)
{

$name = $_POST['name'];
$email = $_POST['email'];
$comments = $_POST['message'];

ini_set("sendmail_from", $email);

if($name==""){
exit("<center>You did not enter your name. Please go back and enter it.<p><a href='javascript:history.go(-1)'>BACK</a></center>");
}

if($email==""){
exit("<center>You did not enter your e-mail address. Please go back and enter it.<p><a href='javascript:history.go(-1)'>BACK</a></center>");
}

if($comments==""){
exit("<center>You did not enter a message. Please go back and enter one.<p><a href='javascript:history.go(-1)'>BACK</a></center>");
}

$message = "Message from $name ($email) \n\n Message:\n\n $comments";

mail("webmaster@abyssunderground.co.uk", "AbyssUnderground.co.uk Feedback Message", $message);

echo("<p><center><font size='2' face='tahoma'>If you did not see any errors above this message then your message was e-mailed to webmaster@abyssunderground.co.uk.<br>
If you did see an error, please send the message by your ususal method.<p><a href='contact.php'>OK</a>");

}

else
{
?>

Error. Please try again. If the problem persists, contact the webmaster using the e-mail address and not the submission form and let him know of the form problem.


<?php
}
?>



Hope this is what you are looking for.
_________________
Andy (AbyssUnderground) (previously The Inquisitor)
www.abyssunderground.co.uk
Back to top View user's profile Send private message Visit poster's website
Francisco 2002
-


Joined: 01 Oct 2003
Posts: 33
Location: Brazil (GMT -3 hours)

PostPosted: Fri Oct 28, 2005 5:58 pm    Post subject: Reply with quote

Hi Andy
Thank you very much by your answer.
But I am looking by a complete e-mail client like Popper: http://ractive.ch/popper/index.php
You know some?
Francisco
_________________
Lojistas.net ( www.lojistas.net ) and ComVir.org ( www.comvir.org )
Back to top View user's profile Send private message
AbyssUnderground
-


Joined: 31 Dec 2004
Posts: 3855

PostPosted: Fri Oct 28, 2005 5:59 pm    Post subject: Reply with quote

Well there is no such thing as a PHP e-mail client then, I thought you meant a script to send an e-mail.

I use Outlook Express and I have no problems with it.
_________________
Andy (AbyssUnderground) (previously The Inquisitor)
www.abyssunderground.co.uk
Back to top View user's profile Send private message Visit poster's website
Francisco 2002
-


Joined: 01 Oct 2003
Posts: 33
Location: Brazil (GMT -3 hours)

PostPosted: Fri Oct 28, 2005 6:09 pm    Post subject: Reply with quote

Hi Andy
Can you remote access Outlook Express thru Abyss Web Server?
Francisco
_________________
Lojistas.net ( www.lojistas.net ) and ComVir.org ( www.comvir.org )
Back to top View user's profile Send private message
AbyssUnderground
-


Joined: 31 Dec 2004
Posts: 3855

PostPosted: Fri Oct 28, 2005 6:11 pm    Post subject: Reply with quote

No I dont think so although there is a version of Outlook Express 2003 that has a web client because we use it at college. I have never used the server version of it but Im sure you can get it somewhere.
_________________
Andy (AbyssUnderground) (previously The Inquisitor)
www.abyssunderground.co.uk
Back to top View user's profile Send private message Visit poster's website
cmxflash
-


Joined: 11 Dec 2004
Posts: 872

PostPosted: Fri Oct 28, 2005 6:13 pm    Post subject: Reply with quote

Code:
if($name==""){
exit("<center>You did not enter your name. Please go back and enter it.<p><a href='javascript:history.go(-1)'>BACK</a></center>");
}


Hmm, just had a thought... What's the diffrence between exit(); and die();?
Back to top View user's profile Send private message
AbyssUnderground
-


Joined: 31 Dec 2004
Posts: 3855

PostPosted: Fri Oct 28, 2005 6:14 pm    Post subject: Reply with quote

Beats me but whats with the javascipt code you quoted?
_________________
Andy (AbyssUnderground) (previously The Inquisitor)
www.abyssunderground.co.uk
Back to top View user's profile Send private message Visit poster's website
Anonymoose
-


Joined: 09 Sep 2003
Posts: 2192

PostPosted: Fri Oct 28, 2005 6:32 pm    Post subject: Reply with quote

lnabyssw wrote:
Hi Andy
Thank you very much by your answer.
But I am looking by a complete e-mail client like Popper: http://ractive.ch/popper/index.php
You know some?
Francisco


http://www.squirrelmail.org/

There are plenty of other webmail style solutions to give you access to your email remotely. Outlook Express 2003 does not exist. Microsoft Exchange Server provides a web interface to your email which is similar in format to Outlook 2003, but there is no way to access standalone Outlook 2003 remotely.
_________________

"Invent an idiot proof webserver and they'll invent a better idiot..."
Back to top View user's profile Send private message
Francisco 2002
-


Joined: 01 Oct 2003
Posts: 33
Location: Brazil (GMT -3 hours)

PostPosted: Fri Oct 28, 2005 6:38 pm    Post subject: Reply with quote

Hi Anonymoose
Can I use Microsoft Exchange Server thru Abyss?
Thank you
Francisco
_________________
Lojistas.net ( www.lojistas.net ) and ComVir.org ( www.comvir.org )
Back to top View user's profile Send private message
AbyssUnderground
-


Joined: 31 Dec 2004
Posts: 3855

PostPosted: Fri Oct 28, 2005 7:00 pm    Post subject: Reply with quote

Quote:
Outlook Express 2003 does not exist.


You know what I meant.
_________________
Andy (AbyssUnderground) (previously The Inquisitor)
www.abyssunderground.co.uk
Back to top View user's profile Send private message Visit poster's website
Anonymoose
-


Joined: 09 Sep 2003
Posts: 2192

PostPosted: Fri Oct 28, 2005 7:08 pm    Post subject: Reply with quote

lnabyssw wrote:
Hi Anonymoose
Can I use Microsoft Exchange Server thru Abyss?
Thank you
Francisco


Microsoft Exchange Server is a standalone server, if you had it, it would have nothing to do with Abyss. It also costs upward of $300.

You also need to decide if you want to run your own mail server, or just want a PHP script on your server which gives you access to your email.

http://nocc.sourceforge.net/ looks like it would do the trick if all you want is a client.
_________________

"Invent an idiot proof webserver and they'll invent a better idiot..."
Back to top View user's profile Send private message
Francisco 2002
-


Joined: 01 Oct 2003
Posts: 33
Location: Brazil (GMT -3 hours)

PostPosted: Tue Nov 01, 2005 4:19 am    Post subject: Reply with quote

Thank you Anonymoose
Francisco
_________________
Lojistas.net ( www.lojistas.net ) and ComVir.org ( www.comvir.org )
Back to top View user's profile Send private message
gobleteer
-


Joined: 02 May 2004
Posts: 2

PostPosted: Wed Dec 14, 2005 11:19 pm    Post subject: Confusion Reply with quote

I'm sorry, but you want a free php client...

Why not pick popper? I'm confused.
Back to top View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Aprelium Forum Index -> General Questions All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB phpBB Group