Doubt in sending mail


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Doubt in sending mail
# 1  
Old 03-16-2005
Doubt in sending mail

Hi Friends,

The command used is : mail <username> < kk


kk is a file containing:

02:12:00.897892 Loading the following CompanyName1: [xxxx]
02:12:00.898109 Loading the following CompanyName2: [xxxx]
02:12:00.898261 Loading the following CompanyErrorContact1: [xxxx]
02:12:00.898452 Loading the following CompanyErrorContact2: [xxxx]
02:12:00.898586 Loading the following CompanyNumber1: [xxx]
02:12:00.898715 Loading the following CompanyNumber2: [xx]
02:12:00.898900 Loading the following CompanyNumber3: [xx]



But the mail is not sent why ???? Immediate help
# 2  
Old 03-16-2005
Try

Mail ***@***.com < <FILENAME>

or mailx ***@***.com < <FILENAME>
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

Problems sending mail: Difference between Mail and Mailx?

Whats the difference between mail and mailx? I'm trying to troubleshoot a problem where I can send mail from server A with this `echo $MESSAGE | mail -s "$SUBJECT" -r $FROM $RECIPIENTS` command but executing the same command from server B throws me this error (Both servers are RHEL) ... (1 Reply)
Discussion started by: RedSpyder
1 Replies

2. UNIX for Dummies Questions & Answers

Sending mail

How can i send a mail when user login in unix ENV. How can i know present use mailID?? Moved out of Contact Us Forum - Please Do Not Post Technical Questions in Non-Technical Forum(s) (1 Reply)
Discussion started by: arun508.gatike
1 Replies

3. Shell Programming and Scripting

Stop sending mail after certain number of mail

Hi guys... I am busy writing a script to notify me via an mail if my application is down. I have done that. Now I want this script to stop sending mails after five mails were sent but the script should keep on checking the application. When the application is up again that count should be... (5 Replies)
Discussion started by: Phuti
5 Replies

4. Shell Programming and Scripting

[Solved] Mail::Sender Doubt

I am using the below code to send an email #!/usr/bin/perl sub BEGIN { unshift (@INC,'/opt/dev/common/mds/perlLib'); } use Mail::Sender; $sender = new Mail::Sender {smtp => 'xxx.xxx.x.xx', from => 'abc@xyz.xom'}; $sender->MailFile({to => 'abc@xyz.xom', subject => 'Here is... (0 Replies)
Discussion started by: dahlia84
0 Replies

5. UNIX for Dummies Questions & Answers

Sending a mail from unix script doubt

HI i usually send an a file attachment in a mail from unix like following. mailx -s 'Job Success' someoner@gmail.com < attachment.log But I have observed in several threads that we can also use uuencode and uudecode. What are they? when should we use uudecode and uuencode ... (1 Reply)
Discussion started by: rajesh_tns
1 Replies

6. Filesystems, Disks and Memory

Sending mail

Hi, I am want to send mails from my aix server using smtp adaptors.How to configure this? i tried with send mail command but it is failing,but what i try with my localhost(my desktop which is not using the aix server) machine i can send mails using the smtp adaptor(simply type telnet... (0 Replies)
Discussion started by: gnanadurai_it
0 Replies

7. Shell Programming and Scripting

Doubt in Ad-hoc reports and Mail

Hi all, 1. How to create ad-hoc reports using Shell Scripts? 2. How to create Shell Scripts for sending email to alert users for erroneous records? Thanks in advance. (1 Reply)
Discussion started by: sgunasekaran
1 Replies

8. HP-UX

hp ux not sending mail

Hi.. In Hp ux box,, mails are not being sent. they are getting queued up in mail queue. (3 Replies)
Discussion started by: kkhan
3 Replies

9. UNIX for Dummies Questions & Answers

Sending Mail

Please help me out i want to know how to send email from unix machine to any email-id. mail to be sent is web based mail. (1 Reply)
Discussion started by: parmeet
1 Replies

10. UNIX for Dummies Questions & Answers

sending a mail to a mail client

Hi everyone! I'm trying to create a database monitoring script that reads an alert file and sends an error message if it can 'grep' a particular string. Is there a way to send this message to a mail client using SMTP? Even better, is there any place on this site that has these kinds of... (5 Replies)
Discussion started by: solaris73
5 Replies
Login or Register to Ask a Question