Mailing in Korne shell


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Mailing in Korne shell
# 1  
Old 09-30-2005
Mailing in Korne shell

All

Iam using Korne shell in AIX OS. Can u give me the syntax to send a mail.
Thanx in advance

Regards
Deepak
# 2  
Old 09-30-2005
this is what I used

mailx -s "SUBJECT" <EMAIL ADDRESS> < "MESSAGE"
# 3  
Old 10-05-2005
PHP Mailing in Korne shell

`man mailx` will tell you all you need to know. Smilie

ps: and it is KORN shell...not Korne
# 4  
Old 10-05-2005
I suppose that if you do not know about "mailx" or "man" then you could be hurting really bad for information.

Code:
apropos command

This will help you narrow down most commands when you don't quite know *nix's available commands.

Code:
apropos mail

Shows you the man pages for mail, mailx and others that may not be appropriate.

Secondly, search this forumn since your question is likely to have been asked over and over.
# 5  
Old 10-09-2005
Reply for mailing in scripting

All

I want to send a file. I used mailx also. but it is not working properly.
i also used "uuencode file fiel| mail <mailid > "

Help me to do this

Thanking you

Regards
Deepak Xavier
# 6  
Old 10-09-2005
Please explain how it's not working.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Finding modified File List after the chosen date in Korne Shell...

I am trying to write a Korne Shell asking the user for a date and a directory and then search recursively in this directory the list of files modified after the date chosen. But I am not getting good results when I Test it... #!/usr/bin/ksh echo "Enter a date (YYYYMMDD) " read date touch -t... (2 Replies)
Discussion started by: marconi
2 Replies

2. Shell Programming and Scripting

Korne Shell...

In Korne Shell Scripting, how to search recursively in a directory, the list of files modified after a given date .. Thanks in advance.. (1 Reply)
Discussion started by: marconi
1 Replies

3. Shell Programming and Scripting

Some Problem with Korne Shell//

I am new to Korne Shell Scripting. Can someone help me with a Korne Shell which asks the user :- 1) to enter the name of a file when searching it recursively (using the find command) in the home directory of this user. 2) for a date (format AAMMJJ) and a directory and then searches ... (4 Replies)
Discussion started by: marconi
4 Replies

4. Shell Programming and Scripting

Korne Shell Problem.

Hi Everyone, I have tried with the following Code for each of the following, but that does not seem to serve the purpose. Can someone give some pointers please. 1) A Korne Shell which asks the user to enter the name of a file when searching it recursively (using the find command) in the... (3 Replies)
Discussion started by: marconi
3 Replies

5. Shell Programming and Scripting

Fixed Length records- Korne Shell Program.

Hi, I need some help regarding in writing a Korne shell script, in determining the fixed length records in a data file. We have already utility in place, which does this work. The Code for this is as below. In the below $1 is the parameter passed to the script, which is the data file name. ... (4 Replies)
Discussion started by: nrajesh_2009
4 Replies

6. Shell Programming and Scripting

Mailing Problem

I have a Unix server with SunOS 5.8 installed on it. I have set a cron job which will send mail across the two different networks. As of now i can only send mails to the abc.com who owns the server but would also like to send it to xyz.com is there any setting or parameter wherein i need to add... (2 Replies)
Discussion started by: nimish
2 Replies

7. Shell Programming and Scripting

GOTO LOOP in KORNE SHELL

All Please help to provide "goto" functionality in KORN shell script. ex: 1: Command Process some command if check some variable true goto 1 else process some other Please help to implement this example in korne... (1 Reply)
Discussion started by: DeepakXavier
1 Replies

8. Shell Programming and Scripting

mailing from a shell script

Hi, This is what my script looks like: cd /var/apache/htdocs/MyApp var=`more /var/apache/htdocs/MyApp/activate` mailx -s "from MyApp" selma@mail.com <<EOT intro: -------------- $var EOT I get output that I would like to see when I invoke the script manually, this is is the... (2 Replies)
Discussion started by: Selma
2 Replies

9. Shell Programming and Scripting

Korne Script for format file

Hi All, I am not too familiar with Korne script so I need as much help as possible on this ;) What I want to do is: from the excel file on my computer, I want to take certain field from this xls file and put it in txt or cvs format in specific width column. Then fpt this file into the server. ... (51 Replies)
Discussion started by: CamTu
51 Replies

10. UNIX for Advanced & Expert Users

Mailing thru UNIX shell script

Hi, I need to send an email from an UNIX shell script along with an attachment. I am working on an HP-UX 11.00 system. The only mailing program which provides adding an attachment to a mail is "pine". However pine is not installed on my system and I cannot install it too due to the server being a... (2 Replies)
Discussion started by: navin
2 Replies
Login or Register to Ask a Question