Send an email message to BlackBerry devices
To send an email message message to multiple
BlackBerry®
devices, you can use the multi-object
sendMessageToUsers() method. To send a message to one user's
BlackBerry device, you can use the single-object
sendMessageToUsers()
method.
Before you begin: Retrieve the following variables:
- messageSubject string for the subject of the message that you want to send
- messageBody string
for the body of the message that you want to send
- userIDs integers for the IDs of the user accounts that you want to send the message to
-
Create the message object.
UserMessage message=new UserMessage();
message.subject = messageSubject;
message.body = messageBody;
-
Specify the type of message your want to send. To send an email message, use the EmailCommonMessageTypeEnumType.EMAIL
enumeration value.
EmailCommonMessageTypeEnum messageType=new EmailCommonMessageTypeEnum();
messageType.@enum = EmailCommonMessageTypeEnumType.EMAIL;
messageType.enumSpecified = true;
-
Invoke sendMessageToUsers() method.
SendMessageToUsers request = new sendMessageToUsers();
request.userIds = userIDs;
request.message = message;
-
Check the result for errors and handle any errors.
if (result.sendMessageToUsersReturnStatus.code != SendMessageToUserReturnStatusEnumType.SUCCESS)
{
// handle any errors
}
Was this information helpful? Send us your comments.