English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I need a web based mail script so that users of my site can log in with their username and password on my domain - pimaxplus.com.
It has to worklike yahoo!, hotmail, gmail... and must be free.
Any help?

(yes I tried hotscripts.com!)

2006-07-19 04:39:39 · 3 answers · asked by Anonymous in Computers & Internet Internet

3 answers

google have just offered a new service in beta for domains to be hosted for their mail under googlemail. you can access this at

http://google.com/hosted

2006-07-19 04:42:41 · answer #1 · answered by Webspot.co.uk 3 · 1 0

I doubt you will get a free script for something like that. If you were unsuccessful with hotscripts.com try www.aspin.com

2006-07-19 11:42:49 · answer #2 · answered by Ipshwitz 5 · 0 0

If you're trying to email the users try this php code:

// multiple recipients
$to = 'aidan@example.com' . ', '; // note the comma
$to .= 'wez@example.com';

// subject
$subject = 'Birthday Reminders for August';

// message
$message = '


Birthday Reminders for August


Here are the birthdays upcoming in August!












PersonDayMonthYear
Joe3rdAugust1970
Sally17thAugust1973



';

// To send HTML mail, the Content-type header must be set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

// Additional headers
$headers .= 'To: Mary , Kelly ' . "\r\n";
$headers .= 'From: Birthday Reminder ' . "\r\n";
$headers .= 'Cc: birthdayarchive@example.com' . "\r\n";
$headers .= 'Bcc: birthdaycheck@example.com' . "\r\n";

// Mail it
mail($to, $subject, $message, $headers);
?>

2006-07-19 11:49:21 · answer #3 · answered by Anonymous · 0 0

fedest.com, questions and answers