Package | Description |
---|---|
com.mailslurp.apis | |
com.mailslurp.models |
Modifier and Type | Method and Description |
---|---|
SentEmailDto |
EmailControllerApi.forwardEmail(UUID emailId,
ForwardEmailOptions forwardEmailOptions)
Forward email to recipients
Forward an existing email to new recipients.
|
SentEmailDto |
SentEmailsControllerApi.getSentEmail(UUID id)
Get sent email receipt
|
SentEmailDto |
AliasControllerApi.replyToAliasEmail(UUID aliasId,
UUID emailId,
ReplyToAliasEmailOptions replyToAliasEmailOptions)
Reply to an email
Send the reply to the email sender or reply-to and include same subject cc bcc etc.
|
SentEmailDto |
EmailControllerApi.replyToEmail(UUID emailId,
ReplyToEmailOptions replyToEmailOptions)
Reply to an email
Send the reply to the email sender or reply-to and include same subject cc bcc etc.
|
SentEmailDto |
AliasControllerApi.sendAliasEmail(UUID aliasId,
SendEmailOptions sendEmailOptions)
Send an email from an alias inbox
Send an email from an alias.
|
SentEmailDto |
InboxControllerApi.sendEmailAndConfirm(UUID inboxId,
SendEmailOptions sendEmailOptions)
Send email and return sent confirmation
Sister method for standard `sendEmail` method with the benefit of returning a `SentEmail` entity confirming the successful sending of the email with a link to the sent object created for it.
|
SentEmailDto |
InboxControllerApi.sendSmtpEnvelope(UUID inboxId,
SendSMTPEnvelopeOptions sendSMTPEnvelopeOptions)
Send email using an SMTP mail envelope and message body and return sent confirmation
Send email using an SMTP envelope containing RCPT TO, MAIL FROM, and a SMTP BODY.
|
Modifier and Type | Method and Description |
---|---|
ApiResponse<SentEmailDto> |
EmailControllerApi.forwardEmailWithHttpInfo(UUID emailId,
ForwardEmailOptions forwardEmailOptions)
Forward email to recipients
Forward an existing email to new recipients.
|
ApiResponse<SentEmailDto> |
SentEmailsControllerApi.getSentEmailWithHttpInfo(UUID id)
Get sent email receipt
|
ApiResponse<SentEmailDto> |
AliasControllerApi.replyToAliasEmailWithHttpInfo(UUID aliasId,
UUID emailId,
ReplyToAliasEmailOptions replyToAliasEmailOptions)
Reply to an email
Send the reply to the email sender or reply-to and include same subject cc bcc etc.
|
ApiResponse<SentEmailDto> |
EmailControllerApi.replyToEmailWithHttpInfo(UUID emailId,
ReplyToEmailOptions replyToEmailOptions)
Reply to an email
Send the reply to the email sender or reply-to and include same subject cc bcc etc.
|
ApiResponse<SentEmailDto> |
AliasControllerApi.sendAliasEmailWithHttpInfo(UUID aliasId,
SendEmailOptions sendEmailOptions)
Send an email from an alias inbox
Send an email from an alias.
|
ApiResponse<SentEmailDto> |
InboxControllerApi.sendEmailAndConfirmWithHttpInfo(UUID inboxId,
SendEmailOptions sendEmailOptions)
Send email and return sent confirmation
Sister method for standard `sendEmail` method with the benefit of returning a `SentEmail` entity confirming the successful sending of the email with a link to the sent object created for it.
|
ApiResponse<SentEmailDto> |
InboxControllerApi.sendSmtpEnvelopeWithHttpInfo(UUID inboxId,
SendSMTPEnvelopeOptions sendSMTPEnvelopeOptions)
Send email using an SMTP mail envelope and message body and return sent confirmation
Send email using an SMTP envelope containing RCPT TO, MAIL FROM, and a SMTP BODY.
|
Modifier and Type | Method and Description |
---|---|
okhttp3.Call |
EmailControllerApi.forwardEmailAsync(UUID emailId,
ForwardEmailOptions forwardEmailOptions,
ApiCallback<SentEmailDto> _callback)
Forward email to recipients (asynchronously)
Forward an existing email to new recipients.
|
okhttp3.Call |
SentEmailsControllerApi.getSentEmailAsync(UUID id,
ApiCallback<SentEmailDto> _callback)
Get sent email receipt (asynchronously)
|
okhttp3.Call |
AliasControllerApi.replyToAliasEmailAsync(UUID aliasId,
UUID emailId,
ReplyToAliasEmailOptions replyToAliasEmailOptions,
ApiCallback<SentEmailDto> _callback)
Reply to an email (asynchronously)
Send the reply to the email sender or reply-to and include same subject cc bcc etc.
|
okhttp3.Call |
EmailControllerApi.replyToEmailAsync(UUID emailId,
ReplyToEmailOptions replyToEmailOptions,
ApiCallback<SentEmailDto> _callback)
Reply to an email (asynchronously)
Send the reply to the email sender or reply-to and include same subject cc bcc etc.
|
okhttp3.Call |
AliasControllerApi.sendAliasEmailAsync(UUID aliasId,
SendEmailOptions sendEmailOptions,
ApiCallback<SentEmailDto> _callback)
Send an email from an alias inbox (asynchronously)
Send an email from an alias.
|
okhttp3.Call |
InboxControllerApi.sendEmailAndConfirmAsync(UUID inboxId,
SendEmailOptions sendEmailOptions,
ApiCallback<SentEmailDto> _callback)
Send email and return sent confirmation (asynchronously)
Sister method for standard `sendEmail` method with the benefit of returning a `SentEmail` entity confirming the successful sending of the email with a link to the sent object created for it.
|
okhttp3.Call |
InboxControllerApi.sendSmtpEnvelopeAsync(UUID inboxId,
SendSMTPEnvelopeOptions sendSMTPEnvelopeOptions,
ApiCallback<SentEmailDto> _callback)
Send email using an SMTP mail envelope and message body and return sent confirmation (asynchronously)
Send email using an SMTP envelope containing RCPT TO, MAIL FROM, and a SMTP BODY.
|
Modifier and Type | Method and Description |
---|---|
SentEmailDto |
SentEmailDto.addAttachmentsItem(String attachmentsItem) |
SentEmailDto |
SentEmailDto.addBccItem(String bccItem) |
SentEmailDto |
SentEmailDto.addCcItem(String ccItem) |
SentEmailDto |
SentEmailDto.addMessageIdsItem(String messageIdsItem) |
SentEmailDto |
SentEmailDto.addPixelIdsItem(UUID pixelIdsItem) |
SentEmailDto |
SentEmailDto.addToContactsItem(UUID toContactsItem) |
SentEmailDto |
SentEmailDto.addToItem(String toItem) |
SentEmailDto |
SentEmailDto.attachments(List<String> attachments) |
SentEmailDto |
SentEmailDto.bcc(List<String> bcc) |
SentEmailDto |
SentEmailDto.body(String body) |
SentEmailDto |
SentEmailDto.bodyMD5Hash(String bodyMD5Hash) |
SentEmailDto |
SentEmailDto.cc(List<String> cc) |
SentEmailDto |
SentEmailDto.charset(String charset) |
SentEmailDto |
SentEmailDto.domainId(UUID domainId) |
SentEmailDto |
SentEmailDto.from(String from) |
static SentEmailDto |
SentEmailDto.fromJson(String jsonString)
Create an instance of SentEmailDto given an JSON string
|
SentEmailDto |
SentEmailDto.html(Boolean html) |
SentEmailDto |
SentEmailDto.id(UUID id) |
SentEmailDto |
SentEmailDto.inboxId(UUID inboxId) |
SentEmailDto |
SentEmailDto.isHTML(Boolean isHTML) |
SentEmailDto |
SentEmailDto.messageId(String messageId) |
SentEmailDto |
SentEmailDto.messageIds(List<String> messageIds) |
SentEmailDto |
SentEmailDto.pixelIds(List<UUID> pixelIds) |
SentEmailDto |
SentEmailDto.putTemplateVariablesItem(String key,
Object templateVariablesItem) |
SentEmailDto |
SentEmailDto.replyTo(String replyTo) |
SentEmailDto |
SentEmailDto.sentAt(OffsetDateTime sentAt) |
SentEmailDto |
SentEmailDto.subject(String subject) |
SentEmailDto |
SentEmailDto.templateId(UUID templateId) |
SentEmailDto |
SentEmailDto.templateVariables(Map<String,Object> templateVariables) |
SentEmailDto |
SentEmailDto.to(List<String> to) |
SentEmailDto |
SentEmailDto.toContacts(List<UUID> toContacts) |
SentEmailDto |
SentEmailDto.toGroup(UUID toGroup) |
SentEmailDto |
SentEmailDto.userId(UUID userId) |
SentEmailDto |
SentEmailDto.virtualSend(Boolean virtualSend) |
Copyright © 2023. All rights reserved.