11 lines
294 B
TypeScript
11 lines
294 B
TypeScript
import type { ResponseEmpty } from '../models/ResponseEmpty';
|
|
export declare class MailService {
|
|
/**
|
|
* Get
|
|
* Sends a test email to the configured from-address.
|
|
* @returns ResponseEmpty
|
|
* @throws ApiError
|
|
*/
|
|
static mailControllerGet(): Promise<ResponseEmpty>;
|
|
}
|