email_sender 1.3.3 copy "email_sender: ^1.3.3" to clipboard
email_sender: ^1.3.3 copied to clipboard

outdated

Email Sender simplifies email integration in Flutter using this package.

example/example.md

Here the example of all method, enjoy coding 😃

import 'package:email_sender/email_sender.dart';

void main() async {
  //initialize EmailSender class
  EmailSender emailSender = EmailSender();
  //initialize send method to response variable
  var response = await emailSender.send("[email protected]");
  if (response["message"] == "emailSendSuccess") {
    print(response);
  } else {
    print("something Failed");
    //for understanding the error 
    print(response);
  }
}


18
likes
0
points
601
downloads

Publisher

unverified uploader

Weekly Downloads

Email Sender simplifies email integration in Flutter using this package.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, requests

More

Packages that depend on email_sender