|
Method Detailboolean addChart(Chart chart) Adds chart to email. Note - only server charts supported (created using ChartTool) otherwise exception occurs
Parameters:
Returns: boolean Since: 10-22-2010 addData(Data data) Adds the specified Data to this response.
Parameters:
Since: 05-28-2010 boolean addDataList(DataList list) Adds the specified list to a page
Parameters:
Returns: boolean Since: 07-11-2008 boolean addDataMap(String id, Data data) Registers the data in the response with the specified id.
Parameters:
Returns: boolean Since: 05-28-2010 boolean addDataMaps(String keyColumn, DataList list) Extracts the records from the list and registers them in the response using the values in the key column. Limited to 500 records per response.
Parameters:
Returns: boolean Since: 05-28-2010 boolean addDataRecord(String id, DataRecord dataRecord) Registers the DataRecord in the response with the specified id. Limited to 500 records per response.
Parameters:
Returns: boolean Since: 11-09-2010 boolean addFile(File file) Attaches the file to the email as an attachment.
Parameters:
Returns: boolean Since: 10-22-2010 addPayload(Payload payload) Adds the payload to this response.
Parameters:
Since: 07-20-2010 allowHTML(String key) Permits any rendering target with the specified key to be rendered as HTML.
Parameters:
Since: 08-02-2017 enableDeliveryStatus() Enables delivery status for this email. This method requires inbound email configured if SMTP settings are configured for current enterprise or a DSN Cloud Subscription Service. When delivery status received, this email job will be marked as "delivered" or "failed" Since: 10-22-2010 enableReply(String workflow) Allows recipient to reply to this email. This method requires inbound email configuration for current enterprise or a DSN Cloud Subscription Service. When recipient replies to the email, specified system workflow name will be provided to the listener.
Parameters:
Since: 04-09-2014 enableWorkflowDeliveryStatus(String workflow) Enables delivery status for this email. This method requires inbound email configuration for current enterprise or a DSN Cloud Subscription Service. When a delivery status event occurs, this email job have its DSN status updated and specified workflow will be provided to the listener.
Parameters:
Since: 04-09-2014 String get(String key) Returns the value associated with key if it exists, null otherwise.
Parameters:
Returns: String Since: 08-28-2018 int getAttachmentCount() Returns the number of attachments to this email. Returns: int Since: 10-22-2010 int getAttachmentSize() Returns the size of the attachment payload in KB. Returns: int Since: 10-22-2010 Boolean getBoolean(String field) Returns the given field as a boolean. The value must be true or false. Throws exception if the value does not exist or cannot be cast to the correct type.
Parameters:
Returns: Boolean Since: 07-11-2008 Boolean getCommonBoolean(String field) Returns the given field as a boolean. The value must be any of the following combinations: [true/false], [1/0], [yes,no], [on,off]. Throws exception if the value does not exist or cannot be cast to the correct type.
Parameters:
Returns: Boolean Since: 08-22-2008 Data getData() Returns the Data object for this response. Returns: Data Since: 05-31-2007 Date getDate(String field) Returns the given field as a Date. Throws exception if the value does not exist or cannot be cast to the correct type.
Parameters:
Returns: Date Since: 07-11-2008 Boolean getDefaultBoolean(String field, Boolean defaultBoolean) Returns the given field as a boolean. If the field does not exist or refers to a non-boolean field, it returns the default value
Parameters:
Returns: Boolean Since: 09-05-2008 Date getDefaultDate(String field, Date defaultDate) Returns the given field as a date. If the field does not exist or refers to a non-date field, it returns the default value
Parameters:
Returns: Date Since: 09-05-2008 Double getDefaultDouble(String field, Number defaultDouble) Returns the given field as a double. If the field does not exist or refers to a non-double field, it returns the default value
Parameters:
Returns: Double Since: 09-05-2008 Integer getDefaultInt(String field, Number defaultInt) Returns the given field as an int. If the field does not exist or refers to a non-int field, it returns the default value
Parameters:
Returns: Integer Since: 09-05-2008 String getDefaultValue(String field, String defaultValue, boolean emptyIsNull) Returns the given field. If the field does not exist, it returns the default value. If the field exists but is value is empty, this method returns defaultValue only if emptyIsNull=true.
Parameters:
Returns: String Since: 09-05-2008 Double getDouble(String key) Returns the given value of the given key as a double. Throws exception if the value does not exist or cannot be cast to the correct type.
Parameters:
Returns: Double Since: 07-11-2008 Integer getInt(String key) Returns the given value of the given key as an Java Int which is smaller than a Javascript Int. Throws exception if the value does not exist or cannot be cast to the correct type.
Parameters:
Returns: Integer Since: 07-11-2008 Long getLong(String key) Returns the given value of the given key as Java Long which is larger. Throws exception if the value does not exist or cannot be cast to the correct type.
Parameters:
Returns: Long Since: 05-28-2022 String getValue(String key) Returns the value associated with key if it exists, null otherwise.
Parameters:
Returns: String Since: 07-11-2008 removeAttachments() Removes the attachments, if any. Since: 10-22-2010 removeDataList(String name) Removes the datalist from the payload
Parameters:
Since: 06-29-2021 removeDataMap(String id) Removes the data in the response with the specified id.
Parameters:
Since: 12-21-2017 removeValue(String key) Removes the associated key from the response.
Parameters:
Since: 05-28-2010 schedule(Date date) Schedules the email to be sent after the specified date.
Parameters:
Since: 10-22-2010 String sendToAddress(String email) Sends the email to the specified email address and returns the email job id. This will return the word 'BLOCKED' if the email is on the system block list.
Parameters:
Returns: String Since: 10-22-2010 sendToAddresses(String[] addresses) Sends the email to the specified addresses.
Parameters:
Since: 10-22-2010 boolean set(String name, Object value) Sets the string value referenced by name. Returns false on fail (e.g. if the column does not exist, etc). The object must be capable of being serialized as a String.
Parameters:
Returns: boolean Since: 08-28-2018 boolean setBoolean(String name, Boolean value) Sets the boolean value referenced by name. Returns false on fail (e.g. if the column does not exist, etc).
Parameters:
Returns: boolean Since: 08-28-2018 boolean setData(String id, Data data) Registers the data in the response with the specified id.
Parameters:
Returns: boolean Since: 02-11-2019 boolean setDate(String name, Date value) Sets the date value referenced by name. Returns false on fail (e.g. if the column does not exist, etc).
Parameters:
Returns: boolean Since: 08-28-2018 boolean setDouble(String name, Number double) Sets the decimal value referenced by name. Returns false on fail (e.g. if the column does not exist, etc).
Parameters:
Returns: boolean Since: 08-28-2018 boolean setFrom(String name, String address) Sets the 'From' information for the email, over-writing the default provided by the system. This functionality requires the email SMTP server to be configued for support and the email setting being used must allow alias sending. Pass null to remove these settings.
Parameters:
Returns: boolean Since: 02-20-2021 setHTML(String key, String xhtml) Adds the given XHTML to the page (the XHTML should ideally be well-formed). You must use the c:html tag for displaying the content. Throws exception if the content contains illegal tags or attributes. You should avoid inline scripts or script blocks.
Parameters:
Since: 07-11-2008 boolean setInt(String name, Number value) Sets the integer value referenced by name. Returns false on fail (e.g. if the column does not exist, etc).
Parameters:
Returns: boolean Since: 08-28-2018 setReplyTo(String email) Sets the replyTo email address. Pass null to remove the replyTo.
Parameters:
Since: 10-22-2010 boolean setString(String name, String value) Sets the string value referenced by name. Returns false on fail (e.g. if the column does not exist, etc).
Parameters:
Returns: boolean Since: 08-28-2018 setSubject(String subject) Sets the subject of the email (over-rides the subject set during Pal development).
Parameters:
Since: 10-22-2010 setUtilityReference(String reference) Sets the utility billing reference for this email. This is a development feature.
Parameters:
Since: 04-22-2011 setValue(String key, Object value) Sets the string value referenced by name. The object must be capable of being serialized as a String.
Parameters:
Since: 07-11-2008 String toString() Returns a description of this object. Returns: String Since: 10-21-2010 |
Copyright © 2006 - 2024, ContractPal, Inc. All rights reserved. | API Date: Dec 03, 2024 10:24 AM |