• Mail Send(1)
    • POS
      Send a mail
  • Transactional Templates(6)
  • Transactional Templates Versions(5)
  • API Key Permissions(1)
  • API Keys(6)
  • Account Provisioning API: Account Operations(3)
  • Account Provisioning API: Account State Operations(2)
  • Account Provisioning API: Offering Operations(3)
  • Alerts(5)
  • Blocks API(4)
  • Bounces API(6)
  • Campaigns API(11)
  • Categories(3)
  • Certificates(5)
  • Contacts(13)
  • Contacts API - Custom Fields(5)
  • Contacts API - Lists(10)
  • Contacts API - Recipients(11)
  • Contacts API - Segments(5)
  • Custom Fields(4)
  • Designs API(9)
  • Domain Authentication(12)
  • E-Mail Activity(4)
  • E-Mail Address Validation(1)
  • E-Mail CNAME Records(1)
  • IP Access Management(6)
  • IP Address(5)
  • IP Address Management API(15)
  • IP Pools(7)
  • IP Warmup(4)
  • Invalid E-Mails API(4)
  • Link Branding(10)
  • Lists(7)
  • Marketing Campaign Stats(8)
  • Reverse DNS(5)
  • Segmenting Contacts(11)
  • Send Test E-Mail(1)
  • Sender Identities API(6)
  • Sender Verification(8)
  • Senders(1)
  • Settings - Enforced TLS(2)
  • Settings - Inbound Parse(4)
  • Webhooks(10)
  • Settings - Mail(13)
  • Settings - Partner(1)
  • Settings - Tracking(9)
  • Single Sends(11)
  • Single Sign-On Settings(5)
  • Single Sign-On Teammates(2)
  • Spam Reports API(4)
  • Stats(7)
  • Subuser Monitor Settings(4)
  • Subuser Statistics(4)
  • Subusers API(6)
  • Suppressions - Global Suppressions(4)
  • Suppressions - Suppressions(6)
  • Suppressions - Unsubscribe Groups(5)
  • Teammates(11)
  • Users API(9)
POST
SendgridSendgridMail SendSend a mail
POST
https://api.lowcodeapi.com/sendgrid/v3/mail/send
Request Body
Content Type : application/json
Request Parameters
personalizationsarray
An array of messages and their metadata
fromobject
The From email address used to deliver the message
reply_toobject
The email address where any replies or bounces will be returned
reply_to_listarray
An array of recipients who will receive replies and/or bounces
subjectstring
The global or message level subject of your email
contentarray
An array where you can specify the content of your email
attachmentsarray
An array of objects where you can specify any attachments you want to include
template_idstring
An email template ID
headersobject
An object containing key/value pairs of header names and the value to substitute for them
custom_argsstring
Values that are specific to the entire send that will be carried along with the email and its activity data
batch_idstring
An ID representing a batch of emails to be sent at the same time
categoriesarray
An array of category names for this message
send_atnumber
A unix timestamp allowing you to specify when you want your email to be delivered
asmobject
An object allowing you to specify how to handle unsubscribes
ip_pool_namestring
The IP Pool that you would like to send this email from
mail_settingsobject
A collection of different mail settings that you can use to specify how you would like this email to be handled
tracking_settingsobject
Settings to determine how you would like to track the metrics of how your recipients interact with your email.
Response
API response data will be shown here once the request is completed.
Snippet
cURL
curl -X POST \
 'https://api.lowcodeapi.com/sendgrid/v3/mail/send' \
 -H 'Cache-Control: no-cache' \
 -H 'Content-Type: application/json' --data-raw '{
  "personalizations": [
    {
      "to": [
        {
          "email": "",
          "name": ""
        }
      ],
      "cc": [
        {
          "email": "",
          "name": ""
        }
      ],
      "bcc": [
        {
          "email": "",
          "name": ""
        }
      ]
    }
  ],
  "from": {
    "email": "",
    "name": ""
  },
  "reply_to": {},
  "reply_to_list": [
    {
      "email": "",
      "name": ""
    }
  ],
  "subject": "",
  "content": [],
  "attachments": [],
  "template_id": "",
  "headers": {},
  "custom_args": "",
  "batch_id": "",
  "categories": [],
  "send_at": "",
  "asm": {},
  "ip_pool_name": "",
  "mail_settings": {},
  "tracking_settings": {}
}'
© 2024LowCodeAPI

Last Updated : 2024-12-16 14:03 +00:00