Thread: Know any mailing list program?

  1. #1
    unleashed alphaoide's Avatar
    Join Date
    Sep 2003
    Posts
    696

    Know any mailing list program?

    I'm looking similar to the following
    http://www.gnu.org/software/mailman/
    but for *PHP* instead, and free of course.

    So far I've found all I found are the ones that send from one side only to the subscribers. Kinda like newsletter.

    I need the one that will let any members to post/reply in mailing list.

    Your suggestion appreciated.
    source: compsci textbooks, cboard.cprogramming.com, world wide web, common sense

  2. #2
    5|-|1+|-|34|) ober's Avatar
    Join Date
    Aug 2001
    Posts
    4,429
    You could write one yourself. Although I really don't recommend what you're proposing for the following reasons:

    1) Your host will most likely not allow something like this. Sending mass emailings is quickly becoming unsupported across the web unless you specify a mailing list and setup a schedule on which the emails are sent out.

    2) Do you really want anyone that can to log on to your site and be able to send large amounts of people whatever they want?

    3) It would be very easy to accomplish in PHP, but again, you're defeating the purpose of the web by doing so.

  3. #3
    Yes, my avatar is stolen anonytmouse's Avatar
    Join Date
    Dec 2002
    Posts
    2,544
    As an alternative, you could set up a Google group or Yahoo group, etc.

  4. #4
    Registered User
    Join Date
    Nov 2004
    Location
    Slovenia, Europe
    Posts
    115
    it's very easy...

    you have table like this in MySQL (or other db): id|name|email

    PHP Code:
     <?php 
    // conn. stuff
    $result mysql_query("SELECT * FROM mail_list");
    while(
    $row mysql_fetch_assoc($result))
    {
         
    mail(.....);
    }
    mysql_close($link);
    ?>
    [C++]
    IDE: DevC++ 4.9.9.2 (GCC 3.4.2)
    2nd compiler: g++ (GCC 3.4.3/4.0.0)
    3rd compiler: Borland 5.5
    [C#]
    IDE: Microsoft Visual C# Express 2005
    2nd IDE: SharpDevelop
    2nd compiler: csc in Command Prompt
    .NET Framework: 2.0
    [PHP]
    Core: 5.1.0 beta 3
    IDE: PHPEdit
    2nd IDE: Notepad
    Favourite extensions: exif,gd2,mysql
    Favourite PEAR packages: DB, XML_RSS, ID3
    Favourite databases: SQLite, MySQL

  5. #5
    unleashed alphaoide's Avatar
    Join Date
    Sep 2003
    Posts
    696
    I guess I could make my own. I know how just too lazy as I got other things to work on.

    @ober about your point 1, a forum software could be set to send email for replies, is that kind of thing also prone to be banned by web host
    source: compsci textbooks, cboard.cprogramming.com, world wide web, common sense

  6. #6
    5|-|1+|-|34|) ober's Avatar
    Join Date
    Aug 2001
    Posts
    4,429
    No, because you would rarely be sending out emails to more than a handful of people. ISPs tend to check into mass mailings when you are sending them to > 30-50 people.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Unknown memory leak with linked lists...
    By RaDeuX in forum C Programming
    Replies: 6
    Last Post: 12-07-2008, 04:09 AM
  2. Pleas take a look & give a critique
    By sh3rpa in forum C++ Programming
    Replies: 14
    Last Post: 10-19-2007, 10:01 PM
  3. simple list and driver program help
    By rugger78 in forum C++ Programming
    Replies: 4
    Last Post: 10-24-2006, 03:37 AM
  4. instantiated from here: errors...
    By advocation in forum C++ Programming
    Replies: 5
    Last Post: 03-27-2005, 09:01 AM
  5. How can I traverse a huffman tree
    By carrja99 in forum C++ Programming
    Replies: 3
    Last Post: 04-28-2003, 05:46 PM