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
Post a Comment