Only For Php Experts

Discussion in 'HTML & Website Design' started by killadiver, Sep 25, 2009.

  1. #1
    I would like to make a email sending script.


    But i want them to either enter the email manually or browse their pc for a notepad file(.txt) In this format




    Email addresss
    Email addresss
    Email addresss
    Email addresss
    Email addresss
    and so on.
     
    killadiver, Sep 25, 2009 IP
  2. Master Joda

    Master Joda Peon

    Messages:
    22
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Your post is not clear enough. Do you want to make this script by your own or need someone to create it for you?
     
    Master Joda, Oct 8, 2009 IP
  3. killadiver

    killadiver Peon

    Messages:
    93
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    I basically waant a bulk email sender online, and i would like help creating it.Thanks
     
    killadiver, Oct 10, 2009 IP
  4. navneetrai

    navneetrai Peon

    Messages:
    50
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    just do a simple "for" loop and use the php "mail" function
     
    navneetrai, Oct 10, 2009 IP
  5. killadiver

    killadiver Peon

    Messages:
    93
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    i dont understand could you write a demonstration


    thanks
     
    killadiver, Oct 10, 2009 IP
  6. cyberfreakz

    cyberfreakz Peon

    Messages:
    260
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #6
    cyberfreakz, Oct 10, 2009 IP
  7. calviin

    calviin Peon

    Messages:
    17
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #7
    $var=file_get_contents("LINKTOYOURFILE.TXT");
    $var=explode("\n", $var);
    foreach ($var as $line=>$data) {
    // DO THE MAIL FUNCTION HERE
    }
     
    calviin, Oct 10, 2009 IP