The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM


UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !!

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
how to forward mail in /var/mail/username to external mail unitipon SUN Solaris 2 05-26-2008 09:20 PM
mail in unix murad.jaber SUN Solaris 1 01-07-2008 07:07 AM
I am not able to send mail form unix to other mail accounts. chinnigd UNIX for Dummies Questions & Answers 1 04-06-2006 05:31 AM
Mail using Unix SCO 2.1 eric_hing UNIX for Dummies Questions & Answers 4 07-03-2003 07:09 PM
can not send mail from unix server to company/yahoo mail b5fnpct UNIX for Dummies Questions & Answers 5 11-22-2002 06:24 PM

Closed Thread
 
Submit Tools LinkBack Thread Tools Search this Thread Display Modes
  #1  
Old 08-20-2002
Registered User
 

Join Date: Aug 2002
Location: Chicago
Posts: 2
UNIX mail

Hello,

I would like to send about 4,000 html e-mails a week preferably with in a 2 day span of time, I know UNIX has a mail server but is this the type of request that UNIX is best suited for or is there something else that is better to fulfill this request?

thank you in advance,
Joey
Forum Sponsor
  #2  
Old 08-20-2002
RTM's Avatar
RTM RTM is offline
Hog Hunter
 
Join Date: Apr 2002
Location: On my motorcycle
Posts: 3,039
Hmm, I'm not sure I would want to answer this - I get enough spam already.

To answer your question, yes, the mail server that came with your UNIX will handle that with no problem - mail servers can handle 4000 emails in about one hour (more or less - it matters on memory, disk speed, interface speeds, DNS lookups...).
  #3  
Old 08-20-2002
Registered User
 

Join Date: Aug 2002
Location: Chicago
Posts: 2
Sorry I was unclear this is not for spam but for a newsletter email that has been requested to be sent on a bi weekly basis.

can you direct me to a site or book that would detail the requirements and steps to set this up.

thank you
Joey
  #4  
Old 08-20-2002
RTM's Avatar
RTM RTM is offline
Hog Hunter
 
Join Date: Apr 2002
Location: On my motorcycle
Posts: 3,039
To do it is simple. You write a script.

Put your subscribers in a file: % cat subscribers.txt
joe@yahoo.com
harry@mailroom.com
joan@hotmail.com

Then in your script you simple read the subscribers file in and run a loop -

#!/bin/csh -f
#
#
set all="`cat ~/subscribers.txt`"
#
foreach x ($all)
mailx -s"Bi-Weekly Newsletter" $x < your.mail
end

your.mail would contain your newsletter.

I don't know if it will work with html - I've never tried it.
  #5  
Old 08-20-2002
auswipe's Avatar
Registered User
 

Join Date: Nov 2001
Location: Wide Awake Wylie, Texas
Posts: 536
Probably going to have to put the following text before the rest of the HTML message:

Code:
Content-type: text/html; charset=iso-8859-1
Content-transfer-encoding: 7BIT
That way MUA's will know how to handle the message.
__________________
Not quite as cool as all the other Kids...
Google The UNIX and Linux Forums
Closed Thread

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes




All times are GMT -7. The time now is 09:49 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008. All Rights Reserved.Ad Management by RedTyger Visit The Complex Event Processing Blog

Content Relevant URLs by vBSEO 3.2.0