Last updated:
0 purchases
email sender
Email sender #
Email Sender simplifies email integration in Flutter, enabling users to send emails, facilitate OTP verification, Enhance your app's email functionality effortlessly.
Usage
import 'package:email_sender/email_sender.dart';
copied to clipboard
Example
⭐ Class Initialization
EmailSender eamilsender = EmailSender();
copied to clipboard
⭐ Send Method
void main() async{
//Initialize emailSender
EmailSender emailsender = EmailSender();
//Enter your email in send method
var response = await emailsender.send("[email protected]");
print(response["message"]);
}
copied to clipboard
methods
⭐ SendOtp
EmailSender emailsender = EmailSender();
var response = await emailsender.sendOtp("[email protected]",123456);
copied to clipboard
⭐ Sendmessage
EmailSender emailsender = EmailSender();
var response = await emailsender.sendMessage("[email protected]","title","subject","body");
copied to clipboard
⭐ Custommessage
EmailSender custom = EmailSender("[email protected]","passkey","[email protected]","title","subject","body");
var response = await emailsender.customMessage();
copied to clipboard
⭐ Help
Email emailsender = Email();
email.help();
copied to clipboard
Authors
AFRID SHAIK
Getting Started
For help getting started with Flutter, view our online
documentation.
For help on editing plugin code, view the documentation.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.