‎2007 Jun 04 8:27 PM
Hi people,
I would like to create an email with a formatted body in HTML (with a table).
The body has a lot of tables. Each table was a background color in header and another background color in the other lines.
Is there a simple way to do this?
Thank you!
Cristiana
‎2007 Jun 04 8:44 PM
Small tip -:)
DATA: CR TYPE X VALUE 13. "For ABAP break line...
DATA: MESSAGE(500) TYPE C.
CONCATENATE '<HTML>' CR '<BODY>' CR
'<FONT COLOR=''GREEN''><H1>Test message!</H1></FONT>'
CR '</BODY>' CR '</HTML>'
INTO MESSAGE.
Greetings,
Blag.
Message was edited by:
Alvaro Tejada Galindo
‎2007 Jun 04 8:41 PM
‎2007 Jun 04 8:44 PM
Small tip -:)
DATA: CR TYPE X VALUE 13. "For ABAP break line...
DATA: MESSAGE(500) TYPE C.
CONCATENATE '<HTML>' CR '<BODY>' CR
'<FONT COLOR=''GREEN''><H1>Test message!</H1></FONT>'
CR '</BODY>' CR '</HTML>'
INTO MESSAGE.
Greetings,
Blag.
Message was edited by:
Alvaro Tejada Galindo
‎2007 Jun 05 3:38 PM
Yes, I doing a concatenate but I have to create a text symbol for each thing in HTML..... otherwise I will get an error in Check...
‎2007 Jun 06 6:29 PM
‎2007 Jun 06 6:47 PM