Email script for HOA

mugzy

Regular Member
Joined
May 2, 2010
Messages
254
Reaction score
75
I Have purchased the domain and will build a homeowners association website and want to provide an email address for each member in the neighborhood. Is there a good script or plugin that is easy to use I can use to do this?
 
Best and Free "Leaf PHPMailer" Incase you want to create individual emails from domain you need to setup email panel not that easy task.. Incase you want easy to handle then install Cpanel and create email accounts for your domain..

Good luck.
 
I would like it easy to setup of course. Something as simple as a yahoo or google email to setup for the user.
 
i would use a code to make a email address from cpannel on each signup .
 
your need somethink like this if the member account made from database
xml api ....(( was a post on internet but looks ok.


Code:
$ip = "XX.xx.xx.xx";

$root_pass = "******";

$account = "test";

$xmlapi = new xmlapi($ip);

$xmlapi->password_auth("root",$root_pass);

$result=$xmlapi->api2_query($account, "Email", "listpops","pratikplds.com" );
 
Back
Top