Hello!
I want already have the mail account on my hosting... but can i used a msoutlook intead of the webmail you provide?
I want already have the mail account on my hosting... but can i used a msoutlook intead of the webmail you provide?
| AOP Web Development wrote: |
| Hello!
I want already have the mail account on my hosting... but can i used a msoutlook intead of the webmail you provide? |
| AOP Web Development wrote: |
| How i can setup my account to msoutlook |
| blk3 wrote: |
| Follow up question regarding email accounts. Ive made an email accts before using the control panel but can I progmatically (thru Php codes) create an email acct., and is it also possible to retreive these messages without having to go to squirrel mail , like having an access to the emails thru your main site? |
| Code: |
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html> <head> <title>SquirrelMail - Login</title> <script language="JavaScript" type="text/javascript"> <!-- function squirrelmail_loginpage_onload() { document.forms[0].js_autodetect_results.value = '1'; var textElements = 0; for (i = 0; i < document.forms[0].elements.length; i++) { if (document.forms[0].elements[i].type == "text" || document.forms[0].elements[i].type == "password") { textElements++; if (textElements == 1) { document.forms[0].elements[i].focus(); break; } } } } // --> </script> <style type="text/css"> <!-- /* avoid stupid IE6 bug with frames and scrollbars */ body { voice-family: "\"}\""; voice-family: inherit; width: expression(document.documentElement.clientWidth - 30); } --> </style> </head> <body onload="squirrelmail_loginpage_onload();"> <form action="http://frih.net/squirrelmail/src/redirect.php" method="post"> <center> Name: <input type="text" name="login_username" value="" /><br /><br /> Password: <input type="password" name="secretkey" /> <input type="hidden" name="js_autodetect_results" value="0" /> <input type="hidden" name="just_logged_in" value="1" /><br /><br /> <input type="submit" value="Login" /> </center> </form> </body> </html> |