Mailshot software

Mailshot software

Post by John Beardmor » Mon, 19 Mar 2001 22:23:03



I'm chair of a voluntary group with a mailing list of 280 people.

At the moment we spend a lot of our members money posting paper to them,
and we'd like to move towards 'paperless' operation by sending
electronic messages to those of members that have email addresses.

Is there any Linux software out there that can take an ASCII message to
send in one file, and a list of email addresses in another, and send out
the mailshot as a single message which has the recipient addresses in
the bcc field ?

All suggestions welcome !

Cheers, J/.
--
John Beardmore

 
 
 

Mailshot software

Post by Peter T. Breue » Mon, 19 Mar 2001 23:51:33



> I'm chair of a voluntary group with a mailing list of 280 people.
> At the moment we spend a lot of our members money posting paper to them,
> and we'd like to move towards 'paperless' operation by sending
> electronic messages to those of members that have email addresses.
> Is there any Linux software out there that can take an ASCII message to
> send in one file, and a list of email addresses in another, and send out
> the mailshot as a single message which has the recipient addresses in
> the bcc field ?
> All suggestions welcome !

mail -s"todays mailshot" `tr '\n' ',' < addr_list` < newsletter

Peter

 
 
 

Mailshot software

Post by Edwin Johns » Tue, 20 Mar 2001 01:11:54


You could simply write a perl script to take an address from a list, add the
message, and then send it using sendmail. I have such a script on our
company web server and we routinely mail out the same message to our email
list, an ASCII file containing name and email address, to around 1400
people. One beauty of this is that it puts only the recipient's name in the
To: field, so there isn't the string of other names anywhere in the email.

I will be glad to send you the script, if you email me (address below in
signature block).

...Edwin

On Sun, 18 Mar 2001 13:23:03 +0000, John Beardmore


>I'm chair of a voluntary group with a mailing list of 280 people.

>At the moment we spend a lot of our members money posting paper to them,
>and we'd like to move towards 'paperless' operation by sending
>electronic messages to those of members that have email addresses.

>Is there any Linux software out there that can take an ASCII message to
>send in one file, and a list of email addresses in another, and send out
>the mailshot as a single message which has the recipient addresses in
>the bcc field ?

>All suggestions welcome !

>Cheers, J/.
>--
>John Beardmore

--
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

~        http://www.shreve.net/~elj       ~
~                                         ~
~ "Once you have flown, you will walk the ~
~ earth with your eyes turned skyward,    ~
~ for there you have been, there you long ~
~ to return." -- da Vinci                 ~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 
 

Mailshot software

Post by John Beardmor » Tue, 20 Mar 2001 01:12:08





>> I'm chair of a voluntary group with a mailing list of 280 people.

>> At the moment we spend a lot of our members money posting paper to them,
>> and we'd like to move towards 'paperless' operation by sending
>> electronic messages to those of members that have email addresses.

>> Is there any Linux software out there that can take an ASCII message to
>> send in one file, and a list of email addresses in another, and send out
>> the mailshot as a single message which has the recipient addresses in
>> the bcc field ?

>> All suggestions welcome !

>mail -s"todays mailshot" `tr '\n' ',' < addr_list` < newsletter

Looks perfect.  Does it require sendmail to be running locally or can it
deal with my ISPs mail servers directly ?  Will it send individual
messages or a single message that's split 'in flight' according to the
bcc list ?

Cheers, J/.
--
John Beardmore

 
 
 

Mailshot software

Post by Michael Heimin » Tue, 20 Mar 2001 02:01:11






> >> I'm chair of a voluntary group with a mailing list of 280 people.

> >> At the moment we spend a lot of our members money posting paper to them,
> >> and we'd like to move towards 'paperless' operation by sending
> >> electronic messages to those of members that have email addresses.

> >> Is there any Linux software out there that can take an ASCII message to
> >> send in one file, and a list of email addresses in another, and send out
> >> the mailshot as a single message which has the recipient addresses in
> >> the bcc field ?

> >> All suggestions welcome !

> >mail -s"todays mailshot" `tr '\n' ',' < addr_list` < newsletter

> Looks perfect.  Does it require sendmail to be running locally or can it
> deal with my ISPs mail servers directly ?  Will it send individual
> messages or a single message that's split 'in flight' according to the
> bcc list ?

Why don't you just try it out, with some addresses you get, that no
one gets
upset, case something is not working as expected?

This is always the preferred method to learn how something works.

Another way would be to setup some kind of mailing list sw, like ie.
majordomo.

Michael Heiming

 
 
 

Mailshot software

Post by Peter T. Breue » Tue, 20 Mar 2001 04:31:22






>>mail -s"todays mailshot" `tr '\n' ',' < addr_list` < newsletter
> Looks perfect.  Does it require sendmail to be running locally or can it

But it isn't because I forgot that you wanted a bcc list. OTOH, it
really shouldn't matter.

Quote:> deal with my ISPs mail servers directly ?  Will it send individual
> messages or a single message that's split 'in flight' according to the
> bcc list ?

There wasn't a bcc list, but yes, sendmail should send individual
messages. It has to in any case because it has to connect to each
destination computer individually. You can optimize this by using a
cleverer mail sender than sendmail.

No sendmail does not need to be running locally.

Peter

 
 
 

Mailshot software

Post by Peter T. Breue » Tue, 20 Mar 2001 04:28:38




>> I'm chair of a voluntary group with a mailing list of 280 people.
>> At the moment we spend a lot of our members money posting paper to them,
>> and we'd like to move towards 'paperless' operation by sending
>> electronic messages to those of members that have email addresses.
>> Is there any Linux software out there that can take an ASCII message to
>> send in one file, and a list of email addresses in another, and send out
>> the mailshot as a single message which has the recipient addresses in
>> the bcc field ?
>> All suggestions welcome !
> mail -s"todays mailshot" `tr '\n' ',' < addr_list` < newsletter

errk. I forgot about the fact that you want a bcc: list. I'd pass the
result through a little formail command before mailing it off.

Peter