ColdFusion 9.0 Resources |
SendGatewayMessageSee alsoGetGatewayHelper; IM gateway message sending commands, SMS Gateway CFEvent structure and commands, CFML event gateway SendGatewayMessage data parameter, and Sending a message using the SendGatewayMessage function in the Developing ColdFusion Applications Parameters
UsageThe SendGatewayMessage function calls the specified gateway’s outgoingMessage method. The value returned by the function depends on the gateway type. The following table describes the return values for standard ColdFusion gateway types:
ExampleThe following example uses an instance of the CFML gateway to log messages asynchronously to a file. To use this example, configure an instance of the CFML gateway with the name “Asynch Logger” in the ColdFusion Administrator. This gateway instance must use a CFC that takes the message and logs it. For sample CFC code, see Using the CFML event gateway for asynchronous CFCs in the Developing ColdFusion Applications. 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> |