This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public bool EnviarEmail(string destinatario, string assunto, string mensagem) | |
| { | |
| try | |
| { | |
| var email = "[email protected]"; | |
| var smtp = new System.Net.Mail.SmtpClient(); | |
| { | |
| smtp.Host = "xxxxx.xxxxx.xxx"; //Servidor SMTP | |
| smtp.Port = 25; | |
| smtp.EnableSsl = true; |
NewerOlder