Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Business Intelligence Publisher
11g Release 1 (11.1.1)

E22256-01


oracle.xdo.delivery.smtp
Interface SMTPPropertyDefinitions

All Known Subinterfaces:
DeliveryPropertyDefinitions, DeliveryRequestHandler
All Known Implementing Classes:
Attachment

public interface SMTPPropertyDefinitions

SMTP delivery property definitions.


Field Summary
static java.lang.String SMTP_ATTACHMENT
          Email attachment.
static java.lang.String SMTP_ATTACHMENT_FIRST
          Deprecated.  
static java.lang.String SMTP_BCC_RECIPIENTS
          BCC recipients, either String or String[] for the value.
static java.lang.String SMTP_CC_RECIPIENTS
          CC recipients, either String or String[] for the value.
static java.lang.String SMTP_CHARACTER_ENCODING
          Deprecated. Use SMTP_CHARSET
static java.lang.String SMTP_CHARSET
          Character set used for from/to/cc/subject such as "UTF-8", "ISO-8859-1" or "EUC-KR".
static java.lang.String SMTP_CONTENT_DISPOSITION
          Content disposition of the document.
static java.lang.String SMTP_CONTENT_FILENAME
          Filename for the document Since 5.6.3 patch for 6135146, it is optional.
static java.lang.String SMTP_CONTENT_TYPE
          Content type of the document
static java.lang.String SMTP_CURRENT_DIRECTORY
          Property to tell the current directory.
static java.lang.String SMTP_DIRECTORY_MAPPINGS
          Directory mapping table for HTML attachment.
static java.lang.String SMTP_ENCODING
          Character encoding used for from/to/cc/subject.
static java.lang.String SMTP_FROM
          Sender (FROM) address
static java.lang.String SMTP_HOST
          Target server host name
static java.lang.String SMTP_PASSWORD
          Password for SMTP authentication.
static java.lang.String SMTP_PORT
          Target server port
static java.lang.String SMTP_REPLY_TO
          Reply-TO address
static java.lang.String SMTP_SECURE_CONNECTION
          This property controls secure connection method to use.
static java.lang.String SMTP_SECURE_CONNECTION_NONE
          SMTP_SECURE_CONNECTION = "none"
static java.lang.String SMTP_SECURE_CONNECTION_SSL
          SMTP_SECURE_CONNECTION = "ssl"
static java.lang.String SMTP_SECURE_CONNECTION_TLS
          SMTP_SECURE_CONNECTION = "tls"
static java.lang.String SMTP_SECURE_CONNECTION_TLS_REQUIRED
          SMTP_SECURE_CONNECTION = "tls_required"
static java.lang.String SMTP_SUBJECT
          Email subject
static java.lang.String SMTP_TO_RECIPIENTS
          TO recipients, either String or String[] for the value.
static java.lang.String SMTP_USERNAME
          Username for SMTP authentication.

 

Field Detail

SMTP_TO_RECIPIENTS

static final java.lang.String SMTP_TO_RECIPIENTS
TO recipients, either String or String[] for the value.
See Also:
Constant Field Values

SMTP_CC_RECIPIENTS

static final java.lang.String SMTP_CC_RECIPIENTS
CC recipients, either String or String[] for the value.
See Also:
Constant Field Values

SMTP_BCC_RECIPIENTS

static final java.lang.String SMTP_BCC_RECIPIENTS
BCC recipients, either String or String[] for the value.
See Also:
Constant Field Values

SMTP_FROM

static final java.lang.String SMTP_FROM
Sender (FROM) address
See Also:
Constant Field Values

SMTP_REPLY_TO

static final java.lang.String SMTP_REPLY_TO
Reply-TO address
See Also:
Constant Field Values

SMTP_SUBJECT

static final java.lang.String SMTP_SUBJECT
Email subject
See Also:
Constant Field Values

SMTP_ATTACHMENT

static final java.lang.String SMTP_ATTACHMENT
Email attachment. Should be Attachment object.
See Also:
Constant Field Values

SMTP_CONTENT_FILENAME

static final java.lang.String SMTP_CONTENT_FILENAME
Filename for the document Since 5.6.3 patch for 6135146, it is optional. If you omit the filename in the request, no filename information will be added to content-disposition and content-type header to the message that MS Exchange Server can show the attachment inline.
See Also:
Constant Field Values

SMTP_CONTENT_TYPE

static final java.lang.String SMTP_CONTENT_TYPE
Content type of the document
See Also:
Constant Field Values

SMTP_CONTENT_DISPOSITION

static final java.lang.String SMTP_CONTENT_DISPOSITION
Content disposition of the document. Value should be either "inline" or "attachment". Default is "attachment".
See Also:
Constant Field Values

SMTP_HOST

static final java.lang.String SMTP_HOST
Target server host name

SMTP_PORT

static final java.lang.String SMTP_PORT
Target server port

SMTP_USERNAME

static final java.lang.String SMTP_USERNAME
Username for SMTP authentication.

SMTP_PASSWORD

static final java.lang.String SMTP_PASSWORD
Password for SMTP authentication.

SMTP_ATTACHMENT_FIRST

static final java.lang.String SMTP_ATTACHMENT_FIRST
Deprecated. 
Attachments comes first in the email body. It is useful when you attach the HTML and images as attachments. Default is false.
See Also:
Constant Field Values

SMTP_CHARACTER_ENCODING

static final java.lang.String SMTP_CHARACTER_ENCODING
Deprecated. Use SMTP_CHARSET
Character encoding used for from/to/cc/subject . Value should be one of character encodings that Java supports.
See Also:
Constant Field Values

SMTP_CHARSET

static final java.lang.String SMTP_CHARSET
Character set used for from/to/cc/subject such as "UTF-8", "ISO-8859-1" or "EUC-KR". Value should be one of character encodings that Java supports.
See Also:
Constant Field Values

SMTP_ENCODING

static final java.lang.String SMTP_ENCODING
Character encoding used for from/to/cc/subject. Value should be either "B" (base64) or "Q" (quoted printable).
See Also:
Constant Field Values

SMTP_DIRECTORY_MAPPINGS

static final java.lang.String SMTP_DIRECTORY_MAPPINGS
Directory mapping table for HTML attachment. Directory names in the source HTML will be replaced with the mapping table values to find out the images on local.

For example, if you have the mapping table like;

  Name         Value
  ------------+------------------------------
  /OA_MEDIA/   /path/to/OA_MEDIA/
  /OA_HTML/    /path/to/OA_HTML/
   
 
All the occurrence of '/OA_MEDIA/' and '/OA_HTML/' in the source HTML will be replaced with the corresponding values in the table (such as /path/to/OA_MEDIA/ ).
See Also:
Constant Field Values

SMTP_CURRENT_DIRECTORY

static final java.lang.String SMTP_CURRENT_DIRECTORY
Property to tell the current directory. It is for HTML attachment
Since:
5.6.1
See Also:
Constant Field Values

SMTP_SECURE_CONNECTION

static final java.lang.String SMTP_SECURE_CONNECTION
This property controls secure connection method to use. "none" by default. "tls" if using STARTTLS when server supports the command. "tls_required" to use STARTTLS and abort if server does not support the command. "ssl" for SSL (secure socket layer) connection.
Since:
11.1.1.2.0
See Also:
Constant Field Values

SMTP_SECURE_CONNECTION_NONE

static final java.lang.String SMTP_SECURE_CONNECTION_NONE
SMTP_SECURE_CONNECTION = "none"
See Also:
Constant Field Values

SMTP_SECURE_CONNECTION_TLS

static final java.lang.String SMTP_SECURE_CONNECTION_TLS
SMTP_SECURE_CONNECTION = "tls"
See Also:
Constant Field Values

SMTP_SECURE_CONNECTION_TLS_REQUIRED

static final java.lang.String SMTP_SECURE_CONNECTION_TLS_REQUIRED
SMTP_SECURE_CONNECTION = "tls_required"
See Also:
Constant Field Values

SMTP_SECURE_CONNECTION_SSL

static final java.lang.String SMTP_SECURE_CONNECTION_SSL
SMTP_SECURE_CONNECTION = "ssl"
See Also:
Constant Field Values

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Business Intelligence Publisher
11g Release 1 (11.1.1)

E22256-01


Copyright © 2010, 2011, Oracle. All rights reserved.