Skip navigation links

Oracle BI Publisher Java API Reference
Release 10.1.3.4


oracle.apps.xdo.delivery.smtp
Interface SMTPPropertyDefinitions

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

public interface SMTPPropertyDefinitions

SMTP delivery property definitions.

Author:
Kei Saito (kei.saito@oracle.com)

Field Summary
static java.lang.String RCS_ID
           
static boolean RCS_ID_RECORDED
           
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.
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_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

RCS_ID

static final java.lang.String RCS_ID
See Also:
Constant Field Values

RCS_ID_RECORDED

static final boolean RCS_ID_RECORDED

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. <p/> 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

Skip navigation links

Oracle BI Publisher Java API Reference
Release 10.1.3.4


© 2004, 2005, 2006, 2007, 2008, Oracle. All rights reserved.