Convert Txt file to HTML table and email


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Convert Txt file to HTML table and email
# 1  
Old 02-04-2016
Convert Txt file to HTML table and email

Hi all

I need help converting a text file into a html table in bash and I need to email this table. The text file looks like the below. Two columns with multiple rows. Top row being header.

Code:
Application Name      Application Status
Application 1              Open
Application 2              Open
Application 3              Closed
Application 4              Open
......
......
......15

Any help would be greatly appreciated

Last edited by Don Cragun; 02-04-2016 at 09:12 PM.. Reason: Add CODE tags.
# 2  
Old 02-05-2016
Hello hitmanjd,

Welcome to forums. Please use code tags as per forum rules for commands/inputs/codes which you are using into your posts. Could you please try following and let me know if this helps you.
Code:
cat send_html_email.ksh
PWD=`pwd`
OUTPUT_FILE=$PWD"/Output_file"
INPUT_FILE=$PWD"/Input_file"
MAILFROM=ravinder_singh@singh_is_king.com
MAILTO=ravinder_singh@singh_is_king.com
SUBJECT="Html format report in email"
echo "<html>" > $OUTPUT_FILE
echo "<title>" >> $OUTPUT_FILE
echo "A Test script." >> $OUTPUT_FILE
echo "</title>" >> $OUTPUT_FILE
echo "<table border="4">" >> $OUTPUT_FILE
echo "<tr>" >> $OUTPUT_FILE
echo "<th>" >> $OUTPUT_FILE
echo "Application Name" >> $OUTPUT_FILE
echo "</th>" >> $OUTPUT_FILE
echo "<th>" >> $OUTPUT_FILE
echo "Application Status" >> $OUTPUT_FILE
echo "</th>" >> $OUTPUT_FILE
echo "</tr>" >> $OUTPUT_FILE
i=0
while read f1 f2 f3
do
        let "i = i + 1"
        if [[ $i == 1 ]]
        then
                continue;
        fi
        echo "<tr>" >> $OUTPUT_FILE
        echo "<td>" >> $OUTPUT_FILE
        echo $f1 $f2 >> $OUTPUT_FILE
        echo "</td>" >> $OUTPUT_FILE
        echo "<td>" >> $OUTPUT_FILE
        echo $f3 >> $OUTPUT_FILE
        echo "</td>" >> $OUTPUT_FILE
        echo "</tr>" >> $OUTPUT_FILE
done < "$INPUT_FILE"
echo "</table>" >> $OUTPUT_FILE
echo "</body>" >> $OUTPUT_FILE
echo "</html>" >> $OUTPUT_FILE
  
sendmail_touser() {
cat - ${OUTPUT_FILE} <<EOF | /usr/sbin/sendmail -oi -t
From: ${MAILFROM}
To: ${MAILTO}
Subject: $SUBJECT
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit
MIME-Version: 1.0
EOF
}
sendmail_touser

Thanks,
R. Singh
# 3  
Old 02-06-2016
Hi.

I have used utility t2t for years to solve such problems. Here's a demonstration:
Code:
#!/usr/bin/env bash

# @(#) s1       Demonstrate utility to produce HTML tables, t2t.
# http://www.scholnick.net/t2t

# Utility functions: print-as-echo, print-line-with-visual-space, debug.
# export PATH="/usr/local/bin:/usr/bin:/bin"
LC_ALL=C ; LANG=C ; export LC_ALL LANG
pe() { for _i;do printf "%s" "$_i";done; printf "\n"; }
pl() { pe;pe "-----" ;pe "$*"; }
db() { ( printf " db, ";for _i;do printf "%s" "$_i";done;printf "\n" ) >&2 ; }
db() { : ; }
C=$HOME/bin/context && [ -f $C ] && $C t2t

FILE=${1-data1}
SCR=f1

pl " Input data file $FILE:"
cat -A $FILE

# Change multiple spaces to TABs:
sed 's/   */\t/g' $FILE > $SCR
pl " Modified input file $SCR:"
cat -A $SCR

pl " Results, output file is ${SCR}.html:"
# Below is for single spaces as delimiters.
# t2t --delim " " --squeeze --header --overwrite $FILE
t2t --header --overwrite $SCR

exit 0

producing:
Code:
$ ./s1

Environment: LC_ALL = C, LANG = C
(Versions displayed with local utility "version")
OS, ker|rel, machine: Linux, 3.16.0-4-amd64, x86_64
Distribution        : Debian 8.3 (jessie) 
bash GNU bash 4.3.30
t2t 7.3.1

-----
 Input data file data1:
Application Name      Application Status$
Application 1              Open$
Application 2              Open$
Application 3              Closed$
Application 4              Open$

-----
 Modified input file f1:
Application Name^IApplication Status$
Application 1^IOpen$
Application 2^IOpen$
Application 3^IClosed$
Application 4^IOpen$

-----
 Results, output file is f1.html, see attachment

The link for t2t is in the comments of the script.

Best wishes ... cheers, drl
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Postgre Query results as Email HTML table

Hello, I'm trying to send email from Greenplum query results as HTML table with status Red/Green Select Server, Last_Date from Table; Results Server, Last_Date Prod, 2018-04-09 Final email Output in HTML format Server Status LastDate Prod GREEN(BOX) 2018-04-09 (if... (2 Replies)
Discussion started by: krux_rap
2 Replies

2. Shell Programming and Scripting

Convert shell script output txt file to html table

My concnern related to the post -Convert shell script output txt file to html table, in this how to print the heading as color. awk 'BEGIN{print "<table>"} {print "<tr>";for(i=1;i<=NF;i++)print "<td>" $i"</td>";print "</tr>"} END{print "</table>"}' <filename> (8 Replies)
Discussion started by: sarajobmai
8 Replies

3. Shell Programming and Scripting

Regarding guidance related to HTML table in email body

Hello All, I have a query here. I am sending an HTML table(which I am creating it by a call to REST API, in a LINUX box) and from there I have to send it into an email. So following are the poins on same: As data is not static so it is writing Dynamic data and creating HTML file. There is... (9 Replies)
Discussion started by: RavinderSingh13
9 Replies

4. Shell Programming and Scripting

HTML table in email body using C Shell

I am using Sun Solaris ver. 5.10 and trying to send an HTML table in email body using mail command in C shell script. I tried following commands:- #1 mail -m "MIME-Version: 1.0;Content-type:text/html;charset=UTF-8" receiver@mail.com < file.html #2 mail -m "Content-type: text/html;" -s "This... (4 Replies)
Discussion started by: jnrohit2k
4 Replies

5. Shell Programming and Scripting

SQL query output convert to HTML & send as email body

Hi , I have a sql query in the unix script ,whose output is shown below.I want to convert this output to HTML table format & send email from unix with this table as email body. p_id src_system amount 1 A 100 2 B 200 3 C ... (3 Replies)
Discussion started by: jagadeeshn04
3 Replies

6. Shell Programming and Scripting

Need to convert output.txt into html file

I have output.txt file generated through shell scripts which need convert in tabular format using html can you please help me output.txt Token State Date1 Date2 Description Name 34567 open 27/06/13 28/06/13 ... (5 Replies)
Discussion started by: vijay_rajni
5 Replies

7. UNIX and Linux Applications

Ssmtp -t < /path/to/the/message.txt (How to format message.txt for html email)

ssmtp has been running well under Kubuntu 12.04.1 for plain text messages. I would like to send html messages with ssmtp -t < /path/to/the/message.txt, but I cannot seem to get the message.txt file properly formatted. I have tried various charsets, Content-Transfer-Encoding, rearranging the... (0 Replies)
Discussion started by: Ronald B
0 Replies

8. Shell Programming and Scripting

Convert shell script output txt file to html table

Hi, I have script which generates the output as below: Jobname Date Time Status abc 12/9/11 17:00 Completed xyz 13/9/11 21:00 Running I have the output as a text file. I need to convert it into a HTML Table and sent it thru email ... (6 Replies)
Discussion started by: a12ka4
6 Replies

9. Shell Programming and Scripting

Is it possible to convert text file to html table using perl

Hi, I have a text file say file1 having data like ABC c:/hm/new1 Dir DEF d:/ner/d sd ...... So i want to make a table from this text file, is it possible to do it using perl. Thanks in advance Sarbjit (1 Reply)
Discussion started by: sarbjit
1 Replies

10. Shell Programming and Scripting

Format txt file as html table

I have a short time to solve a problem, so I need some help. I've searched the forum, but I couldn't find a solution to my problem. I made a script to filter some text and now I have a new requirement to make it available as html table. Problem is that I more than one files with different set... (2 Replies)
Discussion started by: tetreb
2 Replies
Login or Register to Ask a Question