![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| 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 !! |
|
|
||||
| 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 |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
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
|
||||
|
||||
|
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
|
|||
|
|||
|
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
|
||||
|
||||
|
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
|
||||
|
||||
|
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
__________________
Not quite as cool as all the other Kids... |
||||
| Google The UNIX and Linux Forums |