Email Sending REST API Usage Guide
In this guide you will find the documentation for the email sender REST API. The API content is written in Turkish and the answers will be in Turkish.
API Endpoint
The endpoint where the API is available:
GET https://willvinne.com/api/emailSender.php?
Request Parameters
Parameter | Type | Description |
---|---|---|
key | String | Willvinne API key. Contact Willvinne to get your own API key. |
appName | String | Your project’s name. Also used as the email subject. |
text | String | Email content |
String | Email address to send the email to. |
Sample Request
GET https://willvinne.com/api/emailSender.php?key=YOUR_API_KEY&appName=Project+Name&text=This+is+a+test+email&email=recipient@example.com Content-Type: application/json { "key": $key, "appName": "Project Name", "text": "This is a test email.", "email": "recipient@example.com", }
You need to pass these values as parameters to the API endpoint.
Success Response
Response for a successful request:
HTTP/1.1 200 OK Content-Type: application/json { "owner": "willvinne", "status": true, "message": "Mail başarıyla gönderildi." }
Error Responses
400 Bad Request
When requests are made with missing or incorrect parameters:
HTTP/1.1 400 Bad Request Content-Type: application/json { "owner": "willvinne", "status": false, "message": "Eksik parametre hatası." }
500 Internal Server Error
When there is a server-side error:
HTTP/1.1 500 Internal Server Error Content-Type: application/json { "owner": "willvinne", "status": false, "message": "Mail gönderilemedi: " . $e }
Error Codes
Code | Description |
---|---|
400 | Missing or incorrect parameters |
500 | Server error |