File size: 974 Bytes
9b30f5f de10f77 9b30f5f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
import { mg } from '$lib/server/mail';
import type { Actions } from './$types';
export const actions: Actions = {
default: async (event) => {
const body = await event.request.formData();
if (
!body.get('email') ||
!body.get('message') ||
!body.get('firstName') ||
!body.get('lastName')
) {
return {
status: 400,
body: {
error: 'Veuillez remplir tous les champs'
}
};
}
const firstName = body.get('firstName')!.toString().trim();
const lastName = body.get('lastName')!.toString().trim();
const message = body.get('message')!.toString().trim();
const email = body.get('email')!.toString().trim();
await mg.messages.create('mails.bergereenchantee.fr', {
from: 'Formulaire de contact <[email protected]>',
to: ['[email protected]'],
subject: `Message de ${firstName} ${lastName}`,
'h:Reply-To': email,
text: message,
'o:tag': 'contact'
});
return { success: true };
}
};
|