Tester un template
Post /settings/templates/{id}/test
Paramètres dans l'URL :
Nom | Description | Type | Obligatoire |
---|---|---|---|
id | Id du template | String | Oui |
Paramètres :
Nom | Description | Type | Obligatoire |
---|---|---|---|
recipient | Email du destinataire | String | Oui |
Réponse :
Nom | Description | Type |
---|---|---|
status | success / failure | String |
Langage de programmation :
Exemple de requête :
{ "recipient": "recipient@example.com" }
Exemple de réponse :
{ "status": "success" }
Exemple de code :
curl -X GET -H "Content-Type: application/json" -H "X-Tipimail-ApiUser:YOUR_SMTP_USERNAME" -H "X-Tipimail-ApiKey:YOUR_SMTP_KEY" https://api.tipimail.com/v1/settings/templates/g65r4g64h65tr47h678th11d/test
require 'vendor/autoload.php'; $tipimail = new Tipimail\Tipimail('YOUR_SMTP_USERNAME', 'YOUR_API_KEY'); try { $tipimail->getSettingsService()->getTemplatesService()->test('646r54g6r4gr6g46g46546d4', 'recipient@example.com'); } catch(Tipimail\Exceptions\TipimailException $e) { echo 'Exception received :', $e->getMessage(), "\n"; }