Computer Forums

Member Login

Remember Me? Sign Up! | Forgot Password
 
Slogan
 
Closed Thread
Old 12-18-2005, 06:34 PM   #1 (permalink)
 
Junior Techie

Join Date: Jan 2004

Posts: 90

scorpio

Send a message via AIM to scorpio
Default Mailing Linux Terminal Help

Is there a way to use the "mail" in the Linux terminal and not have it ask for body text? I figured out how that "mail (person) -s 'subject'" would do the subject in the first line, but is there a way to do this for the body text?
scorpio is offline  
Old 12-19-2005, 05:42 AM   #2 (permalink)
 
Junior Techie

Join Date: Nov 2005

Posts: 74

philg

Default

If you have the message body in a file you can do
Code:
$ mail -s test philip < message.txt
or
Code:
$ cat message.txt | mail -s test philip
if you have no message to give someone you can simply do
Code:
$ echo | mail -s test philip

philg is offline  
Old 12-19-2005, 03:46 PM   #3 (permalink)
 
Junior Techie

Join Date: Jan 2004

Posts: 90

scorpio

Send a message via AIM to scorpio
Default

Do you know how to attach a file? I keep using "~r filename" but all it does is say that in the subject of the email.

Thanks.
scorpio is offline  
Old 12-19-2005, 03:50 PM   #4 (permalink)
 
Junior Techie

Join Date: Nov 2005

Posts: 74

philg

Default

Code:
mail -s Hello -a /path/to/attachment.txt user@somewhere.com 
To view the full range of options and functions of mail, type:
Code:
man mail

philg is offline  
Old 01-04-2006, 01:45 AM   #5 (permalink)
 
Junior Techie

Join Date: Jan 2004

Posts: 90

scorpio

Send a message via AIM to scorpio
Default

Quote:
Originally posted by philg
Code:
mail -s Hello -a /path/to/attachment.txt user@somewhere.com 
Could that thing mail directories?
scorpio is offline  
Old 01-04-2006, 07:46 AM   #6 (permalink)
 
Junior Techie

Join Date: Nov 2005

Posts: 74

philg

Default

Wouldn't have thought so, you should either tar the directory and send the tarball or send each file in the directory which is too tedious for my liking
__________________
www.pdgaskell.co.uk
philg is offline  
 
Closed Thread

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On