SDK for EmailJS.com customers.
Use you EmailJS account for sending emails.
This is a flutter-only version, otherwise use the REST API.
EmailJS helps to send emails using client-side technologies only. No server is required – just connect EmailJS to one of the supported email services, create an email template, and use our SDK to trigger an email.
Install EmailJS SDK:
$ flutter pub add emailjs
send email
import package:emailjs/emailjs.dart
Map<String, dynamic> templateParams = {
'name': 'James',
'notes': 'Check this out!'
};
try {
await EmailJS.send(
'<YOUR_SERVICE_ID>',
'<YOUR_TEMPLATE_ID>',
templateParams,
'<YOUR_PUBLIC_KEY>',
);
print('SUCCESS!');
} catch (error) {
print(error.toString());
}
init (optional)
import package:emailjs/emailjs.dart
// set Public Key as global settings
EmailJS.init('<YOUR_PUBLIC_KEY>');
try {
// send the email without dynamic variables
await EmailJS.send(
'<YOUR_SERVICE_ID>',
'<YOUR_TEMPLATE_ID>',
);
print('SUCCESS!');
} catch (error) {
print(error.toString());
}