Whatever message this page gives is out now! Go check it out!
SendGatewayMessage(gatewayID, data) |
Parameter | Description |
gatewayID | Identifier of the gateway to send the message. Must be the Gateway ID of one of the ColdFusion event gateway instances configured on the ColdFusion Administrator Event Gateways section's Gateways page. |
data | A ColdFusion structure. The contents of the structure depend on the event gateway type, but typically include a MESSAGE field that contains the message to send and a field that contains the destination address. |
Gateway type | Return values |
Asynchronous CFML | If the message was queued for delivery to the CFC, returns True; False, otherwise. |
Lotus SameTime | If the message or command was successful, returns OK.If an error occurred, returns a string indicating the cause. |
SMS | If the gateway is in asynchronous mode, returns the empty string immediately.If the gateway is in synchronous mode, the function waits for the gateway to return a response. If the message was successfully sent to the short message service center (SMSC), returns the message ID from the SMSC. If an error occurred, returns a string indicating the cause. |
XMPP | If the message or command was successful, returns OKIf an error occurred, returns a string indicating the cause. |
Sending an event to the CFML event gateway that is registered in the
ColdFusion Administrator as Asynch Logger.<br>
<cfscript>
status = false;
props = structNew();
props.message = "Replace me with a variable with data to log";
status = SendGatewayMessage("Asynch Logger", props);
if (status IS True) WriteOutput(Event Message "#props.message#" has been sent.);
</cfscript>