Android | iOS | MacOS | Web | Linux | Windows |
---|---|---|---|---|---|
✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
Api keys | Domains | |
---|---|---|
✅ | ✅ | ✅ |
To install Resend Dart SDK, simply execute the following command in a terminal:
flutter pub add resend_dart
First, you need to get an API key, which is available in the Resend Dashboard.
import 'package:resend_dart/resend.dart';
final apiKey = `API_KEY`
final resend = Resend(apiKey: apiKey);
resend.email.send(
from: '[email protected]',
to: ['[email protected]'],
subject: 'Test subject',
);