Hi, guys. I need to send e-mail to one/several recipients. I need my application to retrieve data from DataBase and insert it into SUBJECT, BODY fields. I succeed in doing this,
(here is a part of my .jsp page):
------------------------------------------------------------------------
GENERATE e-mail
-----------------------------------------------------------------------
Upon clicking this reference in browser MS Outlook is being opened with populated data in appropriate fields - exactly what I need.
The problem is in the following:
I need the data, inserted into Outlook's fields(Subject, Body etc.)
formatted (bold, italic, etc). It must be done programatically, it's customer's demand. When I try something like:
-----------------------------------------------------------------------
&cc=email@address2.com
&bcc=email@address3.com
&body=<b_old>...</b_old>
-----------------------------------------------------------------------
<b_old - because this tag won't be displayed HERE otherwise
html tags are being displayed in Outlook's window. I also tried to type &LessThen; (<) / &GreaterTthen; (>). Result is exactly the same. Is there any overcome??? Thanks in advance for any ideas shared..
>