sendEmail method
Implementation
@override
Future sendEmail(String email, String password, String subject, String msg) async {
return await methodChannel.invokeMethod('sendEmail', {"email":email, "password":password,"subject":subject, "msg":msg});
}