Package com.cribbstechnologies.clients.mandrill.model.response.message

Examples of com.cribbstechnologies.clients.mandrill.model.response.message.SendMessageResponse


     * @param messageRequest
     *            a populated @see com.cribstechnologies.clients.mandrill.model.MandrillMessageRequest
     * @throws RequestFailedException
     */
    public SendMessageResponse sendMessage(MandrillMessageRequest messageRequest) throws RequestFailedException {
        SendMessageResponse response = new SendMessageResponse();
        response.setList(((BaseMandrillAnonymousListResponse<MessageResponse>) request.postRequest(messageRequest, ServiceMethods.Messages.SEND, SendMessageResponse.class,
                messageResponseListReference)).getList());
        return response;
    }
View Full Code Here


                messageResponseListReference)).getList());
        return response;
    }

    public SendMessageResponse sendTemplatedMessage(MandrillTemplatedMessageRequest templateMessage) throws RequestFailedException {
        SendMessageResponse response = new SendMessageResponse();
        response.setList(((BaseMandrillAnonymousListResponse<MessageResponse>) request.postRequest(templateMessage, ServiceMethods.Messages.SEND_TEMPLATE,
                SendMessageResponse.class, messageResponseListReference)).getList());
        return response;
    }
View Full Code Here

TOP

Related Classes of com.cribbstechnologies.clients.mandrill.model.response.message.SendMessageResponse

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.