Skip to content

Instantly share code, notes, and snippets.

@paulo9mv
Last active December 10, 2019 00:30
Show Gist options
  • Save paulo9mv/730f10970028711e84b67a6528e0793f to your computer and use it in GitHub Desktop.
Save paulo9mv/730f10970028711e84b67a6528e0793f to your computer and use it in GitHub Desktop.
Classe Email
import 'package:mailer/mailer.dart';
import 'package:mailer/smtp_server.dart';
class Email {
String _username;
var smtpServer;
Email(String username, String password){
_username = username;
smtpServer = gmail(_username, password);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment