PDA

View Full Version : Email Program That Can Send 1 At A Time



RealitY
10-10-2004, 05:15 AM
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...

motherflux
10-10-2004, 05:36 AM
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.

RealitY
10-11-2004, 06:20 PM
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...

RealitY
10-12-2004, 03:39 PM
^Bump^

KazaaBoy
10-12-2004, 11:16 PM
Setup a newsletter subscribe list and send it that way.

Emdee
10-12-2004, 11:50 PM
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 (http://www.febooti.com/products/command-line-email/) 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! :P

KazaaBoy
10-13-2004, 01:40 AM
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.

RealitY
10-14-2004, 07:13 AM
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...

RealitY
10-17-2004, 04:34 PM
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...

vivitron 15
10-17-2004, 08:14 PM
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)

[email protected]
[email protected]
then upload this file to "email.php", with the relevant bits changed:

<?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.

RealitY
10-18-2004, 05:23 AM
That seems like a good idea although Ive yet to know shit about PHP yet so if ya wanna walk me through and also there is graphics which Im not sure if theyll go and links which should be ok although Ide guess theyde have to written in html I suppose...

vivitron 15
10-18-2004, 09:18 PM
hmm, well i suppose they would have to be in html code in order to work - im not sure how you could send attachments either, though im sure its possible - just not sure how :D

anyhow, in order to make it html is simple, if you would want to, though it may be not quite what you're after....

To do this one, all you do is to add the subject, message and your email addy between the "" in the right places, upload both files, then goto www.yoursite.com/email/email.php and voila - it will have done it for you. I can put a nice bit of code in to display a "this message was sent to all these people:" message for ya without worrying too much

im gonna think about this one - it must be poss to make Outlook or whatever do it :)

RealitY
10-19-2004, 04:02 PM
If I could get Outlook to do it all that would be ideal. As for HTML the problem is any receptients that have it disabled will get crap which is a problem. I think will be the way to go is to open the text file in 1 window and Outlook in the 2nd and then have a macro doing grab, copy, paste, send, next and then repeat...

vivitron 15
10-19-2004, 06:18 PM
hmm, yeah, i guess that would be a bit of a problem - you could always have the macro "cut, paste"ing the top line of the txt, hence always taking the top person.

its a pity really there's no "easy" way to do it - its buggin the life out of me...must be a nice built in feature in office, surely? - it has loads of random other crap noone ever uses! :D

RealitY
10-20-2004, 07:17 AM
Well I guess its not a regular feature anywhere as it would make certain types of email undectable as what they might be which appears is already being done anyway...