Changing email format with javascript -


i sending emails via html page using javascript , outlook activex object (outlook.application) trying change format of mail message html don't know value must set .bodyformat property. i've tried this:

objmail.bodyformat = olformathtml; 

but olformathtml undefined; can use constant vbscript?

you can use htmlbody property this:

objmail.htmlbody = "your html code here"; 

more info:


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -