Sending multiple emails from a database

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Graham2107
    New Member
    • Aug 2007
    • 1

    Sending multiple emails from a database

    I have a small database of people who wish to be placed on a mailing list.

    I have stored the usual parameters like firts name, last name, email address etc.

    How do I read from the database and send a common text e-mail to everyone on the list ?

    Do i read index by index and add $email_address to the "TO:" section in mail ?
    i.e.
    while etc etc
    next index read $email
    $to = $email . ;
  • ronverdonk
    Recognized Expert Specialist
    • Jul 2006
    • 4259

    #2
    Welcome to The Scripts!

    You need a server language for that. And in that language you read your email table rows one by one from MySQL, construct the email message from the contents and send the mail out.

    What server language do you use.?

    Ronald
    Last edited by ronverdonk; Mar 31 '08, 08:48 AM. Reason: welcome

    Comment

    Working...