sendTestEmail method
Send a test email to inbox
Send an inbox a test email to test email receiving is working
Parameters:
- String inboxId (required):
Implementation
Future<void> sendTestEmail(String inboxId,) async {
final response = await sendTestEmailWithHttpInfo(inboxId,);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}