cURL
curl --request GET \ --url https://api.myidvirtual.com/mail/tmp/email/{id} \ --header 'Authorization: <authorization>'
{ "401": {}, "403": {}, "404": {}, "id": "<string>", "from": "<string>", "subject": "<string>", "body": "<string>", "received_at": "<string>" }
Retrieve the full content of a specific email from the temporary inbox
curl -X GET "http://localhost:3333/mail/tmp/email/email_123" \ -H "Authorization: Bearer YOUR_JWT_TOKEN"
{ "id": "email_123", "from": "[email protected]", "subject": "Welcome to our service", "body": "Hello! Welcome to our platform. Please verify your email...", "received_at": "2024-01-15T10:35:00Z" }