Search found 12 matches

by dorathoto
Thu Jul 13, 2017 7:50 pm
Forum: MailEnable Professional Edition
Topic: Smart Host + Amazon SES = fail
Replies: 1
Views: 6508

Re: Smart Host + Amazon SES = fail

I discovered how to configure TLS
By some unknown pattern is not on the same tab
I found this support from another smtp service
https://www.smtp2go.com/setupguide/mailenable/
by dorathoto
Thu Jul 13, 2017 7:50 pm
Forum: MailEnable Enterprise Edition
Topic: Smart Host + Amazon SES = fail
Replies: 1
Views: 4432

Re: Smart Host + Amazon SES = fail

I discovered how to configure TLS
By some unknown pattern is not on the same tab
I found this support from another smtp service

https://www.smtp2go.com/setupguide/mailenable/
by dorathoto
Thu Jul 13, 2017 7:35 pm
Forum: MailEnable Professional Edition
Topic: Smart Host + Amazon SES = fail
Replies: 1
Views: 6508

Smart Host + Amazon SES = fail

I'm trying to set up Smart Host using Amazon. I've already used it from other companies like sendGrid.com and I know MailEnable works. But in Amazon SES you need to configure the connection to TLS. And in mailEnable does not have this setting. I even installed the new version to see if it looked and...
by dorathoto
Thu Jul 13, 2017 7:35 pm
Forum: MailEnable Enterprise Edition
Topic: Smart Host + Amazon SES = fail
Replies: 1
Views: 4432

Smart Host + Amazon SES = fail

I'm trying to set up Smart Host using Amazon. I've already used it from other companies like sendGrid.com and I know MailEnable works. But in Amazon SES you need to configure the connection to TLS. And in mailEnable does not have this setting. I even installed the new version to see if it looked and...
by dorathoto
Mon Oct 31, 2016 4:34 pm
Forum: MailEnable Enterprise Edition
Topic: SQL Very basic settings. missing much!
Replies: 0
Views: 8662

SQL Very basic settings. missing much!

why not put all settings in MSSQL? Now for example, I would like to create a filter for all email accounts and it is virtually impossible using the current standard with Filter.TAB FLT34AE1EDB579E4658BD320BB84C0A1BF5 1 CRT34AE1EDB579E4658BD320BB84C0A1BF5 CRT34AE1EDB579E4658BD320BB84C0A1BF5 filternam...
by dorathoto
Mon Oct 31, 2016 4:29 pm
Forum: MailEnable Developers
Topic: ASP.NET MVC MailBox create and delete
Replies: 2
Views: 15419

Re: ASP.NET MVC MailBox create and delete

I do not know if you still have to doubt, but u should put them as references.
by dorathoto
Fri Mar 14, 2014 5:50 pm
Forum: MailEnable Developers
Topic: Manage postoffice in C#
Replies: 1
Views: 8320

Re: Manage postoffice in C#

ADD: using System; using System.Data.SqlClient; using System.IO; using System.Xml.XPath; namespace BLL { public class MailEnable_Geral { public string _Email { get; set; } public bool CriarEmail(string _senha, string _redirect, long _ativarRedirect) { string[] vPostoffice = _Email.Split('@'); string...
by dorathoto
Fri Mar 14, 2014 5:38 pm
Forum: MailEnable Developers
Topic: Remove Acount from .NET (C#)
Replies: 0
Views: 7585

Remove Acount from .NET (C#)

I can not remove the email account: equal to the NET Reference.pdf and error! public string _mail { get; set; } public bool DeletaEmail() { string[] vPostoffice = _mail.Split('@'); bool _retorno = true; MailEnable.Administration.Mailbox mb = new MailEnable.Administration.Mailbox(); mb.Postoffice = v...
by dorathoto
Fri Mar 14, 2014 5:36 pm
Forum: MailEnable Developers
Topic: Count global messages sent.
Replies: 2
Views: 9039

Re: Count global messages sent.

A maneira mais fácil é utilizar o MTA para fazer isso.
by dorathoto
Fri Mar 14, 2014 5:34 pm
Forum: MailEnable Developers
Topic: MailEnable - Create Account asp.net C#
Replies: 3
Views: 15929

Re: MailEnable - Create Account asp.net C#

class finaly work perfect: public class MailEnable_Geral { public string _Email { get; set; } public bool CriarEmail(string _senha, string _redirect, long _ativarRedirect) { string[] vPostoffice = _Email.Split('@'); string _username = vPostoffice[0]; string _postoffice = vPostoffice[1]; string _doma...
by dorathoto
Wed Feb 26, 2014 11:06 pm
Forum: MailEnable Developers
Topic: MailEnable - Create Account asp.net C#
Replies: 3
Views: 15929

MailEnable - Create Account asp.net C#

I'm trying to create an e-mail with MailEnable based http://www.mailenable.com/developers/NET_SignUp.zip MailEnable.Administration.Login oLogin = new MailEnable.Administration.Login(); oLogin.Account = iCliente.URL; oLogin.LastAttempt = -1; oLogin.LastSuccessfulLogin = -1; oLogin.LoginAttempts = -1;...