
Hi,
I'm using microsfot dynamics crm 2013.
I want to create a POP3/SMTP email server profile for mailjet server (www.mailjet.com).
When I specify the incoming server as "in.mailjet.com", i get the error "incoming email server is not supported".
Is there anyway to use mailjet as an email server in dynamics crm please?
Please tell me if I should give you more informations to describe the problem.
Thank you,
Mounir
*This post is locked for comments
I have the same question (0)Hi
If you are using CRM onprem then you have to use pop3 with SSL or
you have to change in database "AllowNonSSLEmail"
technet.microsoft.com/.../b4a7e72b-df4f-42d8-a91d-c69cc52ff138
You can do it with powershell, Example:
$setting = Get-CrmSetting ServerSideSyncEmailSettings
$setting.AllowNonSSlEmail=$True
Set-CrmSetting $setting
Get-CrmSetting -SettingType ServerSideSyncEmailsettings