Looks pretty straightforward:

You need a database, a script/form to populate the database, a script to
email notifications, a registry script/form, and a report script.


>  Does anyone out there have a PHP script that will serve as an input
> form which are e-mailed to wedding invitees, in turn, linking them  to a

SELECT id, name, email FROM wedding WHERE replied='N'

for each row returned,

mail("$email", "Online wedding invitation",
    "\nPlease visit http:/myserver/register.php?id=$id to register");


> Thanks for any help anyone can provide.  :-)
>
> Gene Kelley



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to