Help with formating when using mailx


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Help with formating when using mailx
# 1  
Old 06-01-2012
Help with formating when using mailx

Hi I am a newbie here. I tried searching for the solution but I guess I either didn't find it or there hasn't been one posted.

my problem is I spooled the results of a query into a .txt file. When I cat the file the formating looks great. All the columns are aligned. However once I mailx the file to myself the formating is off. I tried playing with the set values in the query to compensate but mailx just seems to screw it up. How can I mail the results to myself with the formating still intact?

The spooling in the query is a simple
Code:
SPOOL ${BASE_DIR}/Report_${DATESTAMP}.txt;

I'm just using a simple
Code:
mailx -s "Subject" email < Report_${DATESTAMP}.txt


Last edited by methyl; 06-02-2012 at 05:05 PM.. Reason: please use code tags
# 2  
Old 06-02-2012
Please post what Operating System and version you have. There is a much variation in the mailx command.
Please mention what mail client you are using (e.g. Microsoft Outlook 2007).
Please mention which database engine ran the SQL line.

Do you want the data to appear in the mail body or as an attachment?

The usual answer to this question is to convert the file to MSDOS format using the ux2dos command (on some systems unix2dos). If you need it as an attachment then pipe it through the unix uuencode.
There can be further minor issues with modern Microsoft Office mail clients wherby you need to turn off the setting which ignores new lines in the mail body.
# 3  
Old 06-04-2012
Sorry. I am new to this forum. Here is the requested info:

OS - SunOS 5.10 Generic_144501-19 i86pc i386 i86pc
Mail Client - Outlook 2010
Database - SQL*Plus: Release 10.2.0.4.0

I would like the results to be put in a txt file then have it mailx in the body of the email.

Thank you for your help.

Edit - Also I man ux2dos and dos2ux. It doesn't appear that these 2 commands are available.

man ux2dos
No manual entry for ux2dos.
man dos2ux
No manual entry for dos2ux.

Last edited by RB26DETT; 06-04-2012 at 12:29 PM..
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

File formating

I need to create a fixed width file based on the column lengths. lets assume I have six(this may be dynamic) fields each are of different length column1=6 #size of the column column2=3 column3=2 column4=3 column5=4 column6=5 I tried below code snippet but it is not working echo... (4 Replies)
Discussion started by: gvkumar25
4 Replies

2. UNIX for Beginners Questions & Answers

File formating help

Hi all, I am having the file below I need that as below Thanks, Arun (12 Replies)
Discussion started by: arunkumar_mca
12 Replies

3. Shell Programming and Scripting

Formating questions

Hi, I have a data as follows in some files, i want to change CHAR(2-20) to VARCHAR(2-20). I should not touch any line with CHAR(1) Example: Input: cur_rev_stage_cd CHAR(5) CHARACTER SET LATIN NOT CASESPECIFIC NOT NULL, prev_rev_stage_cd CHAR(5) CHARACTER SET LATIN NOT... (7 Replies)
Discussion started by: srikanth38
7 Replies

4. Shell Programming and Scripting

Formating output

Hello Team i have a file with following data (as columns). I need implement a syntax like below for altering table ALTER TABLE1 TABLENAME ADD COLUMN COL1 CHAR(5) NOT NULL WITH DEFAULT ADD COLUMN COL2 CHAR(5) .. .. ADD COLUMN COLn CHAR(5) NOT NULL... (1 Reply)
Discussion started by: rocking77
1 Replies

5. 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

6. Shell Programming and Scripting

formating output

Hi all, I want to start a new topic on this matter I have this script, #!perl use strict; use warnings; use Data::Dumper; open my $log, '>', 'log-external.txt' or die "Could not open log: $!"; print $log "Subnet,Static,DHCP,Unused\n"; open my $dump, '>', 'dump.log' or die... (2 Replies)
Discussion started by: richsark
2 Replies

7. Shell Programming and Scripting

Output formating

Dear All I am stuck in one problem. Kindly help me. I am taking below mention file as input file and want some op file as mention below. Kindly send me all possible suggestion and query. Thnaks Jaydeep bELOW IS THE INPUT FILE: *** Connected to BSCANGR ***... (1 Reply)
Discussion started by: jaydeep_sadaria
1 Replies

8. Shell Programming and Scripting

formating date

Guys I have a date value like this in a table -> 2006-12-29 12:57:08(data type varchar2(25)) I am trying to subtract this column from sysdate. I am unable to do that. can u guys suggest me a way to do this.. (2 Replies)
Discussion started by: ragha81
2 Replies

9. UNIX for Dummies Questions & Answers

mailx error message : mailx: NUL changed to @

If I use the "Mail" link instead of the "mail" link to ../mailx I get this error. Mail so-n-so @whatever.com mailx: NUL changed to @ Unknown command: "postmaster" The email still goes through but i get the error. If I use "mail" it goes thru without the error. Any ideas?? (2 Replies)
Discussion started by: BG_JrAdmin
2 Replies

10. Forum Support Area for Unregistered Users & Account Problems

Formating mailx text file for Lotus Notes users

We use AIX mailx or sendmail. How can I format a text file so that lotus notes users can see diferent fonts and highlighting. Or can a gif file (company logo..) be sent along with a text file and the Lotus notes user would see the logo and text displayed at the same time and not as an attachment? (0 Replies)
Discussion started by: lidoiwo
0 Replies
Login or Register to Ask a Question