| How to make a mail system? |
Started by firemade123
25 Jan 2012 02:41
SUBSCRIBE
UNSUBSCRIBE
|
|
|
> >> |
I need a mail system on my website to be able to release it to the public. Anyone have a .zip I could download or a site to download or anything?
Mr. Webmaster Firemade1234
|
Well you could try to look it up. c: just trying to help im darkace from dsiclub.
Read my new blog :p
|
Try and learn or look it up  Fellow owner of DSiCoop-
Existance alludes
|
:mail-0: ←thats the code
Read my new blog :p
|
When im finish i give you a cope of my mail script.
Founder and CEO of DsiRealms
|
my web had the code already
Read my new blog :p
|
Firemade doesn't use wapka.
...
|
Yeah, I don't use wapka. I use heliohost. With CPanelŽ Ok, M.J King. Thanks!
Mr. Webmaster Firemade1234
|
I think you'll have to use the mail function. I read about it once on w3schools. You should check it out. By the way, try searching google before you ask for help here. You'll get more help from google than you will from here.
...
|
When you use wapka its not actually called 'Coding' its just a site what is ready.
-DSiCoop
Existance alludes
|
Make a table for the mail to go tonand use the if else statement to check if it there mail or not.
eye3ds.mooo.com
|
First create a table call inbox
have these following fields.
To_user
From_user
id
message
check_read
date
Founder and CEO of DsiRealms
|
Thanks MJ. Got the table created. Now what?
Mr. Webmaster Firemade1234
|
Now create the input fields.
<?php
if($_SESSION['username'] =="") {
echo"<center><font color=red>Sorry you must login to send a message</font></center>";
}
else{
echo"<form action='Inbox.php' method='post'>
echo"<input type='username' name='From_user' value='".$_SESSION['username']."' />
<input type='text' name='To_user' value='' placeholder='Username' />
<textarea name='message' placeholder='Message here' />
<br/>
<input type='Submit' name='Submit' />";
echo"</form>";
}
?>
After you make this i show you how to make the php send script.
and i show you how to make it ajax as will.
Founder and CEO of DsiRealms
|
i would like to know the rest please!
Sam
|
I was wrong about the mail function. A mail system is basically making the table with id, user to, user from, the message and date. Then for mail for the certain user you select from mail where the username=session or cookie. Inserting is pretty simple.
...
|
wow i would just COPY&PASTE if i were you luckily im not so yahh me
jeremy kyle turner
|
"Copy and Pasting" doesn't help you. What if there is an error and you don't know what to do fix it?
...
|
Tables with java that hold the data, then send it to targeted user. :3
People are like slinkies. Worthless, but will always bring a smile to your face when you shove them down the stairs.
|
That's where I got my mail script Webesttools.com 
I'm firemade1234
|
|
|
> >> |