docs: add GITEA-ACTIONS.md, fix Resend test mode error message
Some checks failed
Deploy to Production / Build and Deploy (push) Failing after 2s
Some checks failed
Deploy to Production / Build and Deploy (push) Failing after 2s
Made-with: Cursor
This commit is contained in:
@@ -96,6 +96,13 @@ async function sendViaResend(apiKey: string, { to, subject, html, attachments }:
|
||||
});
|
||||
|
||||
if (error) {
|
||||
// Resend test mode: can only send to the Resend account owner's email
|
||||
if (error.message?.includes('own email address') || error.name === 'validation_error') {
|
||||
return {
|
||||
success: false,
|
||||
error: `Mode test Resend : vous ne pouvez envoyer qu'à l'adresse du compte Resend. Pour envoyer à n'importe qui, vérifiez un domaine sur resend.com/domains et configurez SMTP_FROM avec une adresse de ce domaine.`,
|
||||
};
|
||||
}
|
||||
return { success: false, error: error.message };
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user