Send formatted emails using MAPI
I have developed an application to send mail from VB application using MAPI controls. I have used RichtextBox for Message Body to send formated text but it doesn't work, it sends only plain text message. How can I send formatted mail message using my application.
:wave:
Re: Send formatted emails using MAPI
you need to use HTML tags so for example...
Code:
<HTML>
<body bgcolor="#FFFFFF">
<font face="verdana" size="2" color="#000066">
Hello this is text formatted in Verdana font, size 2 and its colour is navy blue
</font>
</body>
</html>