I am going to use mailgun api.
Here is the cRUL command working in terminal properly.
curl -s --user 'api:key-...' \
https://api.mailgun.net/v3/DomainName/messages \
-F from='Excited User <mailgun@DomainName>' \
-F to=me@outlook.com \
-F subject='Hello' \
-F text='Testing some Mailgun awesomness!'
I can't make sense how I can run this command using Postman.
I tried to import cURL command into Postman but it doesn't import api:key. I really can't understand how I can import this api key into Postman to run the api properly.
Please help me to run this command using Postman.
Thank you!