Re: [PHP] maillist php manger/interface

2003-09-10 Thread Marek Kilimajer
We are just strugling with this. We are using ezmlm, you need to compile it with mysql support. I solved webbased subscribing and unsubscribing with sending an email to the apropriate addresses with From and Return-Path set to the user's email address (I used smtp class instead of mail()

[PHP] maillist php manger/interface

2003-09-09 Thread Boulytchev, Vasiliy
Ladies and Gents, I need the following: 1. A online place for people to subscribe to mailing list. 2. A online place to unsibscribe from a mailing list. 3. Several admins for different mailing lists. 4. mysql integration. What do you guys use? Any free software out there? I have

[PHP] Maillist

2002-03-22 Thread Ashley M. Kirchner
I need to send out several hundred, to several thousand emails out of our database. Now, before everyone starts telling me to use an actual MLM for this, let me explain what I need to do. I need to send a unique ID with each message, in the form of a URL. We want to make unsubscribing

RE: [PHP] Maillist

2002-03-22 Thread Rick Emery
I think PHP's uniqid() will suit your purposes. Look in the Miscellaneous Functions section of the manual. -Original Message- From: Ashley M. Kirchner [mailto:[EMAIL PROTECTED]] Sent: Friday, March 22, 2002 11:38 AM To: PHP-General List Subject: [PHP] Maillist I need to send out

RE: [PHP] Maillist

2002-03-22 Thread Robert V. Zwink
think? Robert V. Zwink http://www.zwink.net/daid.php -Original Message- From: Ashley M. Kirchner [mailto:[EMAIL PROTECTED]] Sent: Friday, March 22, 2002 12:38 PM To: PHP-General List Subject: [PHP] Maillist I need to send out several hundred, to several thousand emails out of our

Re: [PHP] Maillist

2002-03-22 Thread Ashley M. Kirchner
Robert V. Zwink wrote: Then when someone sends back the $unique_id by clicking on your link, you can instuct MySQL to disable the record: UPDATE users SET send_email = 'NO' WHERE MD5(email_address.'ThisIsASecretKey123')=$unique_id This works...with a small change (or is it a fix?):