Getting Started
Install and configure Amplify Overtone in your Amplify Gen 2 project.
Getting Started
Installation
pnpm add @nxsflow/amplify-overtoneSetup
Add Amplify Overtone to your Amplify backend definition:
import { defineBackend } from "@aws-amplify/backend";
import { defineEmail } from "@nxsflow/amplify-overtone";
const email = defineEmail({
senders: {
noreply: {
senderEmail: "noreply@example.com",
displayName: "MyApp",
},
},
});
const backend = defineBackend({
email,
});For more details on email configuration, see the Email section.