Tuesday, October 27th, 2020
For @custom-domain.ext mailbox format go here:
Aruba.it custom domains IMAP, POP3, SMTP settings
POP3
Server: pop3.aruba.it
SSL: true-implicit
Port: 995 (default)
User : email address (e.g.: name@aruba.it or name@technet.en)
using (Pop3 client = new Pop3())
{
client.ConnectSSL("pop3.aruba.it");
client.UseBestLogin("user@aruba.it", "password");
// ...
client.Close();
}
Next step:
receive emails using POP3.
IMAP
Server: imap.aruba.it
SSL: true-implicit
Port: 993 (default)
User: email address (e.g.: name@aruba.it or name@technet.en)
using (Imap client = new Imap())
{
client.ConnectSSL("imap.aruba.it");
client.UseBestLogin("user@aruba.it", "password");
// ...
client.Close();
}
Next step:
receive unseen emails using IMAP.
SMTP
Server: smtp.aruba.it
SSL: true-implicit
Port: 465 (default)
User: email address (e.g.: name@aruba.it or name@technet.en)
using (Smtp client = new Smtp())
{
client.ConnectSSL("smtp.aruba.it");
client.UseBestLogin("user@aruba.it", "password");
// ...
client.Close();
}
Posted in Mail.dll | Tags: Aruba, PEC, Settings | No Comments »
Tuesday, October 27th, 2020
For @aruba.it and @technet.it mailbox formats go here:
@aruba.it and @technet.it IMAP, POP3, SMTP settings
POP3
Server: pop3s.aruba.it
SSL: true-implicit
Port: 995 (default)
User : email address (e.g.: name@aruba.it or name@technet.en)
using (Pop3 client = new Pop3())
{
client.ConnectSSL("pop3s.aruba.it");
client.UseBestLogin("user@custom-domain.ext", "password");
// ...
client.Close();
}
Next step:
receive emails using POP3.
IMAP
Server: imaps.aruba.it
SSL: true-implicit
Port: 993 (default)
User: email address (e.g.: name@aruba.it or name@technet.en)
using (Imap client = new Imap())
{
client.ConnectSSL("imaps.aruba.it");
client.UseBestLogin("user@custom-domain.ext", "password");
// ...
client.Close();
}
Next step:
receive unseen using IMAP.
SMTP
Server: smtps.aruba.it
SSL: true-implicit
Port: 465 (default)
User: email address (e.g.: name@aruba.it or name@technet.en)
using (Smtp client = new Smtp())
{
client.ConnectSSL("smtps.aruba.it");
client.UseBestLogin("user@custom-domain.ext", "password");
// ...
client.Close();
}
Posted in Mail.dll | Tags: Aruba, PEC, Settings | No Comments »