flutter_form_mailer 1.1.1
flutter_form_mailer: ^1.1.1 copied to clipboard
A Flutter package for easy form submissions via email using SMTP.
Flutter Form Mailer π© #
A Flutter package that allows form submissions via SMTP email.
Features #
β
Easily create forms with multiple fields
β
Send form data via email using SMTP
β
Customizable input fields
Usage #
A developer using this package can now add a form with multiple fields like this:
FormMailer(
smtpServer: 'smtp.example.com',
smtpUsername: 'user@example.com',
smtpPassword: 'yourpassword',
recipientEmail: 'admin@example.com',
fields: [
FormFieldData('Name'),
FormFieldData('Email'),
FormFieldData('Message'),
],
);
## Installation
Add to `pubspec.yaml`:
```yaml
dependencies:
flutter_form_mailer: ^1.0.0