Computing.Net > Forums > Unix > How to send mails from unix to lotus notes

Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.

How to send mails from unix to lotus notes

Reply to Message Icon

Name: ch Bushu
Date: May 16, 2009 at 06:41:52 Pacific
OS: Unix
Subcategory: General
Comment:

Hi Frens,

I have to send a mail from UNIX which is a output of a script and send that to a lotus notes mail ID.
I tried the below command:
uuencode output.out | mail mymailID

which sends output.out as an attachment to the mymailID but it didnt work.

Can you please suggest me anyother command that takes the output of the script sample.sh and sends it as a mail to the mailID in lotus notes?

Thanks a lot in advance.



Sponsored Link
Ads by Google

Response Number 1
Name: psiva_unix
Date: May 19, 2009 at 10:23:13 Pacific
Reply:

Hi Bushu,

Can you try this

uuencode output.out;output.out | mail -s "Subject"
"mymailID"


0

Response Number 2
Name: ch Bushu
Date: May 20, 2009 at 03:14:05 Pacific
Reply:

Hi,

I tried it..this is also not working....Didnt get mail to my mail box...


0

Response Number 3
Name: ebhaskar28
Date: November 18, 2009 at 06:59:15 Pacific
Reply:

hi try this one this will work i think

mail -s "error" name@xyz.com < ./error.mail


0

Response Number 4
Name: Curt R
Date: November 18, 2009 at 07:39:54 Pacific
Reply:

The above is likely the correct way to do it....only I believe you would want the file to copy text from to be "output.out" if that is the name of the file your script outputs to.

mail -s "error" name@xyz.com < /path/output.out


0

Response Number 5
Name: wollie
Date: November 23, 2009 at 05:15:22 Pacific
Reply:

if you want to stick to uuencode, use this one

uuencode output.out output.out | mailx -s "..." ........

(well, it's not stuttered)

cheers

wollie


0

Related Posts

See More



Sponsored Link
Ads by Google
Reply to Message Icon





Use following form to reply to current message:

Login or Register to Reply
LoginRegister


Sponsored links

Ads by Google


Results for: How to send mails from unix to lotus notes

How to send mails from unix to lotus notes. www.computing.net/answers/unix/how-to-send-mails-from-unix-to-lotus-notes/8389.html

How to send mail on UNIX to smtp mail www.computing.net/answers/unix/how-to-send-mail-on-unix-to-smtp-mail/2394.html

how to send mail from unix script www.computing.net/answers/unix/how-to-send-mail-from-unix-script/7525.html