我正在尝试与我的 IOS 应用程序中的 SMTP API 进行通信。API 使用 HTTPS 请求,但是,我不确定如何在 Swift 中创建一个。该应用程序举例说明了以下 cURL 请求作为与 API 通信的一种方式:
curl --request POST \
--url https://api.sendinblue.com/v3/smtp/email \
--header 'accept: application/json' \
--header 'api-key:YOUR_API_KEY' \
--header 'content-type: application/json' \
--data '{
"sender":{
"name":"Sender Alex",
"email":"senderalex@example.com"
},
"to":[
{
"email":"testmail@example.com",
"name":"John Doe"
}
],
"subject":"Hello world",
"htmlContent":"<html><head></head><body><p>Hello,</p>This is my first transactional email sent from Sendinblue.</p></body></html>"
}'
如何从我的代码项目中提出这个请求?
任何帮助将不胜感激!