What happens when I choose to block HTML emails in my email client?

Spanky

New Member
What happens when I choose to block HTML emails in my email client? [*]Does it strip the HTML contents from my email? [*]Does it look for alternate text part in the MIME content?I tried outlook 2010 and It stripped the HTML content and displayed just the text. I am not sure if it because it couldn't find the text content or outlook simply stopped looking for text content and strips the HTML.Below is snippet of my code,\[code\]//HTML VersionBodyPart htmlBodyPart = new MimeBodyPart();htmlBodyPart.setContent(htmlContent, "text/html");//Text VersionBodyPart textBodyPart = new MimeBodyPart();textBodyPart.setContent(textContent, "text/plain");Multipart multipart = new MimeMultipart("alternative");multipart.addBodyPart(textBodyPart); //add text partmultipart.addBodyPart(htmlBodyPart); //add html part\[/code\]And surprisingly Google didn't help me on this one.
 
Back
Top