Page 1 of 2 12 LastLast
Results 1 to 10 of 15

Thread: Email Program That Can Send 1 At A Time

  1. #1
    Im looking for an email program that can send 1 email at a time form a txt or csv file. I currently import the list to Outlook and send it all at once but it seems some dont get it as it is filtered as bulk by many since its being sent that way, only way I think I can avoid it being filtered is by sending them individually...

  2. Software & Hardware   -   #2
    I'm not aware of this feature in any email apps, but one workaround you could do in Outlook is to create a Contact Group, or..say, three...like A-H, I-P, Q-Z
    and send the emails to those groups seperately.

    There is a crack in everything.
    That's how the light gets in.

  3. Software & Hardware   -   #3
    The problem with that is it will still be seen as the same bulk mail and still get filtered. I am near postive that there is an application that can do this as many companies that send bulk emails arent filtered as such when recieved. The only other thing I can think of is creating some sort of macro so perhaps someone can suggest a decent marcro application since the last time I used one it was built into Win 3.11 ffs...

  4. Software & Hardware   -   #4

  5. Software & Hardware   -   #5
    KazaaBoy's Avatar Nothing On The Moon.
    Join Date
    Jul 2003
    Posts
    354
    Setup a newsletter subscribe list and send it that way.

  6. Software & Hardware   -   #6
    I think a subscribe list would still be considered a bulk email.

    Can't think of a third party program that would do this off the top of my head. You could always try a program like this which can send mail from the command line and then create a DOS batch file to call it repeatedly for as many addresses as you like. You could use the text of your email as an argument to this batch file.

    It's a cheap, nasty solution and I feel ashamed even suggesting it, but it'd work!
    We can't stop here... this is bat country

  7. Software & Hardware   -   #7
    KazaaBoy's Avatar Nothing On The Moon.
    Join Date
    Jul 2003
    Posts
    354
    Quote Originally Posted by Emdee
    I think a subscribe list would still be considered a bulk email.
    Not really, some companies use this method to make money. You are only allowed to send 5 e-mails a week.

  8. Software & Hardware   -   #8
    Well Ive done something very similar where I opened multiple windows and run a macro that was windows based. In this case I would open the text file and the email app and just tell it to run one ata time. I think that may work, any suggestions for which app though...

  9. Software & Hardware   -   #9
    Still looking for a Macro app that can work with windows, preferabley freeware or even an app that can send 1 email at a time would be even better...

  10. Software & Hardware   -   #10
    vivitron 15's Avatar Poster
    Join Date
    Jan 2003
    Location
    North East England, UK
    Posts
    1,741
    i dunno if you like the idea - its a bit different, but should do what you want!

    K, youll need a website with php access (or set it up on your own pc)

    Create a folder "email" - upload the text file with all the email addresses on seperate lines: (Ive called it list.txt)
    then upload this file to "email.php", with the relevant bits changed:
    Code:
    <?php
     $MailSubject = ""; // the subject of the message you will send
     $Message = ""; //enter message here
     $from = ""; //your email address here
     
     $email = file('list.txt');
     
     foreach($email as $to){
     mail( $to, $MailSubject, $Message, "Content-Type: text/plain; charset=us-ascii; format=flowed\r\nFrom: ".$from."\r\nBCc: ");
     	};
     
     ?>
    It will go through each of the items in the list in turn and send emails to everyone whose on their own line.
    <insert signature here>

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •