![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| How do I send email? Learn how to send a UNIX or Linux email attachment from the command line. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Send mail attachments and have a mail body | shibajighosh | AIX | 1 | 04-18-2008 01:54 PM |
| Pull E-mail address from file, send e-mail | DC Heard | Shell Programming and Scripting | 1 | 01-29-2008 02:23 AM |
| mail problems - how to send mail on solaris | amon | SUN Solaris | 10 | 04-06-2006 09:31 AM |
| I am not able to send mail form unix to other mail accounts. | chinnigd | UNIX for Dummies Questions & Answers | 1 | 04-06-2006 08:31 AM |
| can not send mail from unix server to company/yahoo mail | b5fnpct | UNIX for Dummies Questions & Answers | 5 | 11-22-2002 09:24 PM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
|||||
|
events send mail to admin -
Hi everybody !!
I want to do something and I can't figure out. The idea is that a script should send an email when a backup is done. It works with a unix account (like root) but what I really want is to send that email to other account like fede@somethig.com. I have a mail server installed in other computer, all these boxes are running solaris 9. I believe that I should tell the box that is running the backup script to send the email using other mail server, but I don't know how to do it. Also, as a test, I tried: mail -t myaccount@stuff.com, and it doesn´t work. (of course the email acount exist...) So if someone can help me, I'll send a pack of six beers... Thanx a lot. |
|
||||
|
it really depends on how your doing the backup in the first place.
for me. i run my backups via cron and i have the output goto the cronusers email. you can always pipe the output to the mail command and then you can specify which user. some backup software allows you to configure users to be notified when an event happens. so i would check your software docs and see what you can come up with, or talk with the people that manage the backups and set it up in the first place they would prolly have the most valuable information for you. |
|
|||||
|
No, it is just a normal script like:
---------------------------------------- # !/bin/bash cd /tmp cp /tmp /home/mystuff # and when the copy is done I want to be informed by mail # but not to my unix account like root, I want the mail to, for # example, myaccount@hotmail.com. ???? ------------------------------------------ Thanks for your help |
|
|||||
|
Thanks, but my problems is not with the script, what I really don't know how to do is sending the mail from a command.
mail -t sends a mail only to unix account and I want to send the mail to an "outside" mail account like something@hotmail.com Thanks again. |
|
|||||
|
I think mailx is the standard front-end for sendmail and elm is HP-UX only(?)
echo "Hello World!" | mailx -s "Hello World Message" your_name@your.domain.com |
| Bookmarks |
| Tags |
| linux, sendmail, solaris |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|