How to check and create dynamic email aliases with flurdy and php? -
i having sns allows public users register , create own profiles. want create email alias when new user registers.
for example when "joe" registers, want offer him email address "joe@mydomain.com".
i have setup mail server using instructions given @ http://flurdy.com/docs/postfix/#install
i have gone through flurdy documentation , done lot of research create email alias via php. couldn't find useful one. ideas?
if want display offers above text box, place in <div>
above text box email or right side of text box.
if want input offer right inside text box, try value="<?php echo $email" ?>
set $email
variable
$email = $_post['first_name']."_".$_post['last_name']."@yourdomain.com";
add event jquery onkeyup=
event last_name
text box.
Comments
Post a Comment