com.atlassian.confluence.mail
Class BotocssMailContentProcessor
java.lang.Object
com.atlassian.confluence.mail.BotocssMailContentProcessor
- All Implemented Interfaces:
- MailContentProcessor
public class BotocssMailContentProcessor
- extends java.lang.Object
- implements MailContentProcessor
Takes a serialized HTML document as input and injects CSS taken from the
<style>
tags in to the appropriate elements as inline
style attributes.
This is largely for compatibility with Gmail and a few other email clients
which do not parse stylesheet links or HTML <style>
tags.
The <style>
tags annotated with a
delete-email-style class attribute will also get removed from the
document post-injection. This is in order to reduce the outcoming size of the
mail as Gmail enforces a mail size of lower than 102kB by clipping the mail
on its default view.
Method Summary |
java.lang.String |
process(java.lang.String input)
Take the supplied input data and process it in some fashion, returning the result. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
BotocssMailContentProcessor
public BotocssMailContentProcessor()
process
public java.lang.String process(java.lang.String input)
- Description copied from interface:
MailContentProcessor
- Take the supplied input data and process it in some fashion, returning the result. If the
processing fails then input should be returned as the result.
- Specified by:
process
in interface MailContentProcessor
- Parameters:
input
- the content to be processed.
- Returns:
- the processed version of the content or the same content if processing failed.
Copyright © 2003-2013 Atlassian. All Rights Reserved.