1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
use anyhow::Result;
use crate::Client;
pub struct SendTestEmail {
pub client: Client,
}
impl SendTestEmail {
#[doc(hidden)]
pub fn new(client: Client) -> Self {
SendTestEmail { client }
}
/**
* Send a Test Marketing Email.
*
* This function performs a `POST` to the `/marketing/test/send_email` endpoint.
*
* **This endpoint allows you to send a test marketing email to a list of email addresses**.
*
* Before sending a marketing message, you can test it using this endpoint. You may specify up to **10 contacts** in the `emails` request body field. You must also specify a `template_id` and include either a `from_address` or `sender_id`. You can manage your templates with the [Twilio SendGrid App](https://mc.sendgrid.com/dynamic-templates) or the [Transactional Templates API](https://sendgrid.api-docs.io/v3.0/transactional-templates).
*
* > Please note that this endpoint works with Dynamic Transactional Templates only. Legacy Transactional Templates will not be delivered.
*
* For more information about managing Dynamic Transactional Templates, see [How to Send Email with Dynamic Transactional Templates](https://sendgrid.com/docs/ui/sending-email/how-to-send-an-email-with-dynamic-transactional-templates/).
*
* You can also test your Single Sends in the [Twilio SendGrid Marketing Campaigns UI](https://mc.sendgrid.com/single-sends).
*/
pub async fn post_marketing_test_send_email(
&self,
body: &crate::types::PostMarketingTestSendEmailRequest,
) -> Result<crate::types::Help> {
let url = "/marketing/test/send_email".to_string();
self.client
.post(&url, Some(reqwest::Body::from(serde_json::to_vec(body)?)))
.await
}
}