Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Need help sending attachment via mailx Post 302965343 by os2mac on Wednesday 27th of January 2016 01:18:50 PM
Old 01-27-2016
You could do this with uuencode:

Code:
uuencode file.txt file.txt |mailx -s "enter subject here" emal@emal.com

 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

mail or mailx attachment

I have used the forum to determine the format required to send attachments from hp-ux 11. the problem I have is that using mailx does not attach the file, but subsititing mailx for mail on the command line attaches the file but i'm not able to specify a subject? The attachment has been convert... (3 Replies)
Discussion started by: brettmartin99
3 Replies

2. Shell Programming and Scripting

Problem with mailx command when sending attachment.

Hi, I have tried to sent a mail with body and attachment. But the shell script got hanging while executing that command. The command is "(cat body;uuencode att1.csv)|mailx -s "Production Monitoring Report(Unix Side)" milton.yesusundaram@patni.com" where body is a file having a single line.... (2 Replies)
Discussion started by: miltony
2 Replies

3. Shell Programming and Scripting

Sending email with text & attachment using mailx

I spent some time working this out, with a little help from various forums, and thought the community would like to know : Here is how you can send an email from a single Unix command line : /usr/bin/echo "Email text\nNew line\nAnother new line" >x | uuencode sourcefile.txt sourcefile.txt |... (3 Replies)
Discussion started by: haryadoon
3 Replies

4. Shell Programming and Scripting

Problem while sending message and attachment with mailx

Hi All, I am trying to send a mail with an attachment and message. Following command I am using. (cat <messagefile> ; uuencode <attachmentfile> <attachmentfile>)|mailx -s"Subject" dave@email.com In the received mail, message body is appearing fine. But attachment is not coming. Rather... (2 Replies)
Discussion started by: nihar.dutta
2 Replies

5. Shell Programming and Scripting

mailx attachment sending large file

Hi I want to sent attachment file which is 400mb size.(single file, not tar file) is there any way that these kind of large files can be divided into small sizes and sent as attachments thanks with anticipation (3 Replies)
Discussion started by: karthikn7974
3 Replies

6. Shell Programming and Scripting

Adding an attachment as an attachment to mailx

I don't want the attachment embedded in the mail. I would like a file attached. When I do mailx -s "Report, `date +'%D %r` " -r "Notifications" bob@bob.com < /usr/local/bin/myreport.log> /dev/null It gets embedded in my email. I want a file attachment. How do I do that? (2 Replies)
Discussion started by: guessingo
2 Replies

7. Shell Programming and Scripting

Mailx: How to send a attachment using mailx command

Hi All, Can anyone please provide the command for sending an mail with attachment using mailx command. Thanks in Advance :) Regards, Siram. (3 Replies)
Discussion started by: Sriram.Vedula53
3 Replies

8. HP-UX

mailx with -m attachment corrupted

mailx with -m command sending emails with attachments correctly to all users except users who have email on microsoft exchange server. They are receiving attachments as garbled text in mail body (5 Replies)
Discussion started by: sankalpag
5 Replies

9. Shell Programming and Scripting

mailx not sending excel attachment properly

Hi, I am trying to send email with attachment using mailx command. I am using the folowing command: uuencode XX_HWSW_BUYERWISE_88963631_1.xls XX_HWSW_BUYERWISE_88963631_1.xls | mailx -s "Test Mail as Attachment" oracleams@xyz.com I get the email in the inbox. However, when I try to open the... (5 Replies)
Discussion started by: asp_julius
5 Replies

10. Solaris

mailx with attachment

Hi, When i used below command, i am able to send mail mailx -s "Testing mail working or not " babu.sudhakar@ymail.com" but if i want send attachment with mail,which syntax i need to follow to send a file as attachment. (3 Replies)
Discussion started by: sridhardwh
3 Replies
mimecheck(1)						      Check MIME attachments						      mimecheck(1)

NAME
mimecheck - determine the type of the MIME encoded of an attachment mimezip - detect the type of MIME encoded zip archive in an attachment mimebzip - detect the type of MIME encoded bzip2 data in an attachment mimegzip - detect the type of MIME encoded gzip data in an attachment SYNOPSIS
mimecheck boundary [file] mimezip boundary [file] mimebzip boundary [file] mimegzip boundary [file] DESCRIPTION
The scripts mimecheck, mimezip, mimebzip, and mimegzip can be used to determine the contents of MIME encoded attachments of the type appli- cation/octet-stream. The scripts require the boundary as provided in the headers and/or bodys of mails with enclosed attachments. The scripts read from standard input if no file was provided and write out the detected MIME type to standard out. EXAMPLE
A short filter rule used by procmail(1) to check for DOS executables in MIME encoded zip archives found in many attachments: BLANK="[ ]+" TYPE="${BLANK}multipart/(alternative|mixed)" :0 * $ ^Content-Type:${TYPE};(${BLANK}|$)*boundary=["']?[^ "';]+ { BOUNDARY="${MATCH}" TYPE="" :0 B * $ ^Content-Transfer-Encoding:${BLANK}base64 { TYPE=`mimecheck ${BOUNDARY}` :0 * TYPE ?? application/x-zip { TYPE=`mimezip ${BOUNDARY}` } } :0 * TYPE ?? executable.*DOS * TYPE ?? DOS.*executable /dev/null } there is no guarantee that this piece of a procmailrc(5) file will work. SEE ALSO
procmailrc(5), file(1), sed(1), mimencode(1). COPYRIGHT
2007 SuSE LINUX Products GmbH, Nuernberg, Germany, 2007 Werner Fink. AUTHORS
Werner Fink <werner@suse.de>. 3rd Berkeley Distribution Juni 28, 2007 mimecheck(1)
All times are GMT -4. The time now is 10:37 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy