Dear {$client->name},
A delete request for SIP account {$client->account} has been issued. If it was not you who made the request, or you don't want to remove your account, you can safely ignore this email.
{* Structured request details. Same template
handles both web-page and mobile-device
requests — deleteAccount() server-side
always builds the full record now, so the
shape is uniform. Device-only fields
(device_brand, device_model, os_version,
app_version) are wrapped in {if isset}
guards so they collapse out for web
requests rather than rendering empty rows. *}
Request details:
| Server request ID |
{$requester_entity.server_request_id|escape:'html'} |
| Client request ID |
{$requester_entity.client_request_id|escape:'html'} |
| Timestamp |
{$requester_entity.client_timestamp|escape:'html'} |
| IP address |
{$requester_entity.ip|escape:'html'} |
{* Requester device sub-section — keys present
on every request (platform, user_agent) +
mobile-only details when available. The
{if} guards keep the row out when the
value is missing or empty, so a web
request renders just Platform + User
agent without empty device-fingerprint
rows. *}
Requester device:
{if isset($requester_entity.platform) && $requester_entity.platform neq ''}
| Platform |
{$requester_entity.platform|escape:'html'} |
{/if}
{if isset($requester_entity.user_agent) && $requester_entity.user_agent neq ''}
| User agent |
{$requester_entity.user_agent|escape:'html'} |
{/if}
{if isset($requester_entity.os_version) && $requester_entity.os_version neq ''}
| OS version |
{$requester_entity.os_version|escape:'html'} |
{/if}
{if isset($requester_entity.device_brand) && $requester_entity.device_brand neq ''}
| Device brand |
{$requester_entity.device_brand|escape:'html'} |
{/if}
{if isset($requester_entity.device_model) && $requester_entity.device_model neq ''}
| Device model |
{$requester_entity.device_model|escape:'html'} |
{/if}
{if isset($requester_entity.app_version) && $requester_entity.app_version neq ''}
| App version |
{$requester_entity.app_version|escape:'html'} |
{/if}
The possibility to delete the account will be active for 2 days until {$client->expire_date}
Click this link to remove the account.
|