PDA

View Full Version : Mailinglist


Michiel
07-03-2002, 07:22 PM
Hi there,

I'm looking for an easy way to send 'personalized' emails to a number of people (at about 50). The text of the mail is exactly the same, only the opening of the mail contains a different name. I would like to use a flat-file db (ie .dat-file) instead of MySql. How do I achieve this?

Thanx for your replies, Michiel

closer
07-05-2002, 07:51 PM
the file commands... fopen, fgets, blah, blah, blah

i would have a file like the following:

some name, mail title
another guy, different mail title
still another person, his mail title
... and so on

then loop through the file exploding the string by the comma and sending the e-mail using those vars.

I think thats what your looking for.

-Scott