Auto Email Greeting in PHP to Members

Auto Email Greeting in PHP to Members

am 10.10.2007 15:41:34 von tkaw220

Hi,

I am looking to build an PHP application which will automatically send
birthday greeting email to subscribers. The content of that email will
change from time to time. Please help. Links to tutorial to accomplish
this objective is very much appreciated.

Thanks.

Regards,
Edwin

Re: Auto Email Greeting in PHP to Members

am 10.10.2007 15:46:44 von Tyno Gendo

tkaw220@gmail.com wrote:
> Hi,
>
> I am looking to build an PHP application which will automatically send
> birthday greeting email to subscribers. The content of that email will
> change from time to time. Please help. Links to tutorial to accomplish
> this objective is very much appreciated.
>
> Thanks.
>
> Regards,
> Edwin
>

Grab the PHP manual, MySQL Manual, an editor, and start reading ;-)

Try Google for any PHP/MySQL Tutorials, there are loads.

Re: Auto Email Greeting in PHP to Members

am 10.10.2007 19:48:20 von Michael

On Oct 10, 3:41 pm, tkaw...@gmail.com wrote:
> Hi,
>
> I am looking to build an PHP application which will automatically send
> birthday greeting email to subscribers. The content of that email will
> change from time to time. Please help. Links to tutorial to accomplish
> this objective is very much appreciated.
>
> Thanks.
>
> Regards,
> Edwin

Hi Edwin,

Read my tutorials on wiki.greenquery.com.
There you will find simple and usefull examples on howto work with
MYSQL and sending emails.

//Michael

P.S
I hope it's of any help to you

Re: Auto Email Greeting in PHP to Members

am 12.10.2007 04:41:18 von Tim Roberts

tkaw220@gmail.com wrote:
>
>I am looking to build an PHP application which will automatically send
>birthday greeting email to subscribers. The content of that email will
>change from time to time. Please help. Links to tutorial to accomplish
>this objective is very much appreciated.

You don't want your web application sending the emails. Remember that the
PHP app will only run when someone makes a web request. If no one happens
to make a web request on a Sunday, your app won't run at all.

You should use something like cron to fire off a task once a day to query
the database, format and send the email. You could write that task in PHP,
but it doesn't have to be.
--
Tim Roberts, timr@probo.com
Providenza & Boekelheide, Inc.