sendTestEmail method

Future<void> sendTestEmail(
  1. String inboxId
)

Send a test email to inbox

Send an inbox a test email to test email receiving is working

Parameters:

Implementation

Future<void> sendTestEmail(String inboxId,) async {
  final response = await sendTestEmailWithHttpInfo(inboxId,);
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}