cancel
Showing results for 
Search instead for 
Did you mean: 

Message Mapping (Mail Adapter)

Former Member
0 Kudos

Hi all,

I'm building a specific message mapping to send e-mails through an E-MAIL communication channel. Right now I'm already able to test it and the e-mails are going out properly. My problem is that they are assuming the "times new roman" text font by default. Do you know where I can change this?

Thanks in advance.

Regards,

Ricardo Inácio

Accepted Solutions (1)

Accepted Solutions (1)

former_member200962
Active Contributor
0 Kudos

You need to make use of XSLT mapping to change the font....as mentioned HTML tags will help you....in the Content node your code should be like:

<Content>
<html>
<body>
<font face="verdana" size="4">Message content that you want to display in the email body</font>
</body>
</html>
</Content>

If you want to have various fonts/ font-size then enclose the text accordingly within the font tag.....the above code will display the email body with verdana font of size 4 (it will be big enough)

Regards,

Abhishek.

Answers (1)

Answers (1)

VijayKonam
Active Contributor
0 Kudos

I believe you could define HTML tags with in the body of the mail in the message mapping. Refer to the Mail package format in help.

VJ