Email List / Newsletter Script

Discussion in 'PHP' started by Electro-Host, Jan 24, 2010.

  1. #1
    Hello,

    Does anyone know any good email list / newsletter scripts which can do the following:

    - Send HTML / plain text emails.
    - Use a html sign up form
    - Allows importing of emails

    I prefer it being free.

    Thanks.
     
    Electro-Host, Jan 24, 2010 IP
  2. Electro-Host

    Electro-Host Well-Known Member

    Messages:
    321
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    130
    #2
    Anyone - ?
     
    Electro-Host, Jan 25, 2010 IP
  3. prithwirajsaha83

    prithwirajsaha83 Peon

    Messages:
    13
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    well if you are experienced in php you can do that your self. for creating html mails use headers as

    $headers = "MIME-Version: 1.0\r\n";
    $headers .= 'From: ' . "\r\n";
    $headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
    $message=file_get_contents('thehtmlfilepath');
    then use mail function
    mail ( $to , $subject , $message , string $additional_headers , string $additional_parameters );

    for guide on creating the html for sending as newsletter
    refer
    http://www.knowledge-transfers.com/it/how-to-write-a-html-newsletter
     
    prithwirajsaha83, May 19, 2010 IP
  4. Envy

    Envy Peon

    Messages:
    18
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Php list.. Google it.
     
    Envy, May 19, 2010 IP
  5. roopajyothi

    roopajyothi Active Member

    Messages:
    1,302
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    80
    #5
    Yep! I am using phplist
    it's available at phplist.com its free and good! :)
     
    roopajyothi, May 19, 2010 IP