mailx requirement - email body header in bold and data content in normal text


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting mailx requirement - email body header in bold and data content in normal text
# 1  
Old 04-07-2010
mailx requirement - email body header in bold and data content in normal text

Dear all-

I have a requirement to send an email via email with body content which looks something below-

Email body contents
--------------------
RequestType: Update
DateAcctOpened: 1/5/2010

Note that header information [RequestType and DateAcctOpened should be in BOLD] and data content should be normal text..

Please advice on this...
# 2  
Old 04-07-2010
Create an email using Outlook Express|Thunderbird|etc and send it to yourself.
Examine the received email on your unix mail box, before you have downloaded it to you POP account, Use this email as a template to create a script to send a similar email.
The bold|font|color stuff is all html code.
# 3  
Old 04-08-2010
Sorry, I was not very clear on my requirement
I would like to achieve this functionality via unix malix command

Regards,
Suresh

---------- Post updated at 04:07 AM ---------- Previous update was at 03:57 AM ----------

I mean "mailx" command in Unix
# 4  
Old 04-08-2010
# 5  
Old 04-08-2010
Thank you..this thread helped..!!!!
# 6  
Old 04-08-2010
Just in case:

mail is (per some RFCs) intended to be plain-text. The fact that Outlook or similar crap-programs ignore this and send mail in HTML, .doc or whatever fancy format there is (and usually a f*cked-up version of that fancy format, not even a clear version of it), is just that: the violation of a set standard.

There is the MIME standard for such cases, when a mail has several parts attached to it in different formats, but the mail body itself - as per RFC 822 - is intentionally plain-text.

Instead of seeking ways to use tools outside their specification and bend standardized protocols to work in a non-standardized way better find ways to educate your users. If you want headers to display in bold find a way to make your mail program display this way instead of inserting obtrusive code-parts into a meant-to-be plain text document. Change your applications instead of tinkering with the interfaces and protocols in between.

bakunin
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Recursive header for email body

i have added the header also to the script you provided, it is working fine, but I am expecting to get the header over those rows for which the URL or port changes. URL will remain same for few rows and then it change, and once the URL change the header should come, like in below input you can see... (11 Replies)
Discussion started by: mirwasim
11 Replies

2. Shell Programming and Scripting

Body content is in random format while sending email from Linux to my outlook.

Hi I have a script running in lunix machine which emails log file content to my outlook. Here is the actual log file result: Image-1 In-Master:25028 ReplicaDn Consumer Supplier Delay dc=xxx,dc=com lmjker0110:12345 ... (4 Replies)
Discussion started by: buzzme
4 Replies

3. UNIX for Advanced & Expert Users

Bold letter in email body

Hi All, The below is the email text and i want few words in BOLD. I am writing the below message in to a .txt file and calling it in a function which generated email. when i run at cmd prompt it is working fine , but wehn i run a script .sh it is not working. Below is the text printing in to... (2 Replies)
Discussion started by: kiranparsha
2 Replies

4. Shell Programming and Scripting

Need to print body of content using mailx

Hi, I'm a perl developer. I need to attach a file from my perl cgi script and send mail to our users whoever using our website. I have used mailx command to attach a file.. it is working fine for me. The problem I'm facing is I'm not getting body of the mail. I have a function called... (0 Replies)
Discussion started by: bheeshmaraja
0 Replies

5. UNIX for Dummies Questions & Answers

Send email with attachment and body : mailx , waiting for input , signal Control D

Hi, I am trying to send email with attacment and body using "mailx" (cat body.txt; uuencode attach.txt) | mailx -s "Attachment" abc@xyz.com When i type this command, the shell is still waiting for me to enter something in standard input and press control D before it sends a mail and... (2 Replies)
Discussion started by: aliaszero
2 Replies

6. Shell Programming and Scripting

The body of the Email -- mailx

Hi, I am using mailx command to send an email and i took the body of the email from a file, mailx -r gtt.org -s "Status Report " ss@org.com < $ProcessStatisticsFile but now i want to declare the body of the email in the command itself. I have tried with the following command but... (4 Replies)
Discussion started by: chinnu01
4 Replies

7. Shell Programming and Scripting

Referring to attached images in html email body through mailx

encoding type for images? (5 Replies)
Discussion started by: biswasbaishali
5 Replies

8. UNIX for Dummies Questions & Answers

Bold Text In Email

Hello, I email some info daily to my employees using a script. But they tend to overlook an important part so I wanted to bold that particular section. Everyone here uses outlook to receive their emails. I would like to know how to send an email to my employees with some parts in bold. (3 Replies)
Discussion started by: Amonkira
3 Replies

9. Shell Programming and Scripting

how to send an email with some body content and attachment

hi plz help me in sending a mail with some data in body and an attachment as some txt file. currently i am able to send mail with some body content, i need an example how to send the same along with attachment. thanks in advance -bali (2 Replies)
Discussion started by: balireddy_77
2 Replies

10. UNIX for Dummies Questions & Answers

To send an email with the body content extracted from a file

Hi, I have been trying to shoot an email with the email body to be obtained from a file. Can someone please help me with it.. I have been trying to use the MAILX commad for the same. mailx -s "test email" -r sender@test.com < file.txt but it sends the file as an attachment,while i... (3 Replies)
Discussion started by: rohit.shetty84
3 Replies
Login or Register to Ask a Question