diff --git a/ee/tabby-ui/app/(dashboard)/settings/(integrations)/mail/components/mail-testing-form.tsx b/ee/tabby-ui/app/(dashboard)/settings/(integrations)/mail/components/mail-testing-form.tsx index fc468c46db80..eada8752bdcb 100644 --- a/ee/tabby-ui/app/(dashboard)/settings/(integrations)/mail/components/mail-testing-form.tsx +++ b/ee/tabby-ui/app/(dashboard)/settings/(integrations)/mail/components/mail-testing-form.tsx @@ -47,8 +47,8 @@ export default function MailTestingForm({ const onSubmit = (values: FormValues) => { return sendTestEmail(values).then(res => { if (res?.data?.sendTestEmail) { - toast.success( - 'A test email has been sent, please check your inbox to verify.' + toast.info( + 'A test email has been sent. If your configuration is correct, you should receive an email shortly.' ) onSuccess?.() }