Search in sources :

Example 1 with Recipient

use of com.microsoft.graph.models.Recipient in project msgraph-sdk-java by microsoftgraph.

the class OutlookTests method testSendMail.

@Test
public void testSendMail() {
    TestBase testBase = new TestBase();
    User me = testBase.graphClient.me().buildRequest().get();
    Recipient r = new Recipient();
    EmailAddress address = new EmailAddress();
    address.address = me.mail;
    r.emailAddress = address;
    Message message = new Message();
    message.subject = "Test E-Mail";
    message.from = r;
    ArrayList<Recipient> recipients = new ArrayList<Recipient>();
    recipients.add(r);
    message.toRecipients = recipients;
    testBase.graphClient.me().sendMail(UserSendMailParameterSet.newBuilder().withMessage(message).withSaveToSentItems(true).build()).buildRequest().post();
}
Also used : User(com.microsoft.graph.models.User) Message(com.microsoft.graph.models.Message) ArrayList(java.util.ArrayList) Recipient(com.microsoft.graph.models.Recipient) EmailAddress(com.microsoft.graph.models.EmailAddress) Test(org.junit.jupiter.api.Test)

Example 2 with Recipient

use of com.microsoft.graph.models.Recipient in project msgraph-beta-sdk-java by microsoftgraph.

the class OutlookTests method createDraftMessage.

private Message createDraftMessage(TestBase testBase, String draftSubject) {
    User me = testBase.graphClient.me().buildRequest().get();
    Recipient r = new Recipient();
    EmailAddress address = new EmailAddress();
    address.address = me.mail;
    r.emailAddress = address;
    Message message = new Message();
    message.subject = draftSubject;
    ArrayList<Recipient> recipients = new ArrayList<Recipient>();
    recipients.add(r);
    message.toRecipients = recipients;
    message.isDraft = true;
    // Save the message as a draft
    return testBase.graphClient.me().messages().buildRequest().post(message);
}
Also used : User(com.microsoft.graph.models.User) Message(com.microsoft.graph.models.Message) ArrayList(java.util.ArrayList) Recipient(com.microsoft.graph.models.Recipient) EmailAddress(com.microsoft.graph.models.EmailAddress)

Example 3 with Recipient

use of com.microsoft.graph.models.Recipient in project msgraph-beta-sdk-java by microsoftgraph.

the class OutlookTests method getMessage.

public Message getMessage() {
    Message message = new Message();
    java.util.List<String> emails = Arrays.asList("test_email@test_domain.com");
    java.util.List<Recipient> listReceipient = new ArrayList<>();
    for (String email : emails) {
        EmailAddress emailAddress = new EmailAddress();
        emailAddress.address = email;
        Recipient recipient = new Recipient();
        recipient.emailAddress = emailAddress;
        listReceipient.add(recipient);
    }
    message.body = getItemBody();
    message.toRecipients = listReceipient;
    message.subject = "Test Message";
    message.id = "1234";
    return message;
}
Also used : Message(com.microsoft.graph.models.Message) ArrayList(java.util.ArrayList) Recipient(com.microsoft.graph.models.Recipient) EmailAddress(com.microsoft.graph.models.EmailAddress)

Example 4 with Recipient

use of com.microsoft.graph.models.Recipient in project msgraph-sdk-java by microsoftgraph.

the class OutlookTests method getMessage.

public Message getMessage() {
    Message message = new Message();
    java.util.List<String> emails = Arrays.asList("test_email@test_domain.com");
    java.util.List<Recipient> listReceipient = new ArrayList<>();
    for (String email : emails) {
        EmailAddress emailAddress = new EmailAddress();
        emailAddress.address = email;
        Recipient recipient = new Recipient();
        recipient.emailAddress = emailAddress;
        listReceipient.add(recipient);
    }
    message.body = getItemBody();
    message.toRecipients = listReceipient;
    message.subject = "Test Message";
    message.id = "1234";
    return message;
}
Also used : Message(com.microsoft.graph.models.Message) ArrayList(java.util.ArrayList) Recipient(com.microsoft.graph.models.Recipient) EmailAddress(com.microsoft.graph.models.EmailAddress)

Example 5 with Recipient

use of com.microsoft.graph.models.Recipient in project msgraph-sdk-java by microsoftgraph.

the class OutlookTests method createDraftMessage.

private Message createDraftMessage(TestBase testBase, String draftSubject) {
    User me = testBase.graphClient.me().buildRequest().get();
    Recipient r = new Recipient();
    EmailAddress address = new EmailAddress();
    address.address = me.mail;
    r.emailAddress = address;
    Message message = new Message();
    message.subject = draftSubject;
    ArrayList<Recipient> recipients = new ArrayList<Recipient>();
    recipients.add(r);
    message.toRecipients = recipients;
    message.isDraft = true;
    // Save the message as a draft
    return testBase.graphClient.me().messages().buildRequest().post(message);
}
Also used : User(com.microsoft.graph.models.User) Message(com.microsoft.graph.models.Message) ArrayList(java.util.ArrayList) Recipient(com.microsoft.graph.models.Recipient) EmailAddress(com.microsoft.graph.models.EmailAddress)

Aggregations

EmailAddress (com.microsoft.graph.models.EmailAddress)7 Recipient (com.microsoft.graph.models.Recipient)7 Message (com.microsoft.graph.models.Message)6 ArrayList (java.util.ArrayList)6 User (com.microsoft.graph.models.User)4 Test (org.junit.jupiter.api.Test)2