diff options
| author | Jay V <[email protected]> | 2025-10-29 19:07:41 -0400 |
|---|---|---|
| committer | Jay V <[email protected]> | 2025-10-29 19:07:43 -0400 |
| commit | e6132fc6a43d1dde2093a251df0cdf8ee238a2ab (patch) | |
| tree | 9b3b3e5d2a24c77b1eff96f17ff2f2012fb17b5e /packages/console/app/src/routes/api | |
| parent | 950b608c4d41beaac8af24122f342c130c18fa58 (diff) | |
| download | opencode-e6132fc6a43d1dde2093a251df0cdf8ee238a2ab.tar.gz opencode-e6132fc6a43d1dde2093a251df0cdf8ee238a2ab.zip | |
docs: enterprise
Diffstat (limited to 'packages/console/app/src/routes/api')
| -rw-r--r-- | packages/console/app/src/routes/api/enterprise.ts | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/packages/console/app/src/routes/api/enterprise.ts b/packages/console/app/src/routes/api/enterprise.ts index d937be543..0bc78e104 100644 --- a/packages/console/app/src/routes/api/enterprise.ts +++ b/packages/console/app/src/routes/api/enterprise.ts @@ -25,19 +25,16 @@ export async function POST(event: APIEvent) { // Create email content const emailContent = ` -New Enterprise Inquiry - -Name: ${body.name} -Role: ${body.role} -Email: ${body.email} - -Message: ${body.message} - `.trim() + +-- +${body.name} +${body.role} +${body.email}`.trim() // Send email using AWS SES await AWS.sendEmail({ - to: "[email protected]", + to: "[email protected]", subject: `Enterprise Inquiry from ${body.name}`, body: emailContent, }) |
