Skip to main content

Dynamices 365 FO : error "the smtp server requires a secure connection or the client was not authenticated

trying to send test mail through the email parameters in dyn365FO VHD.

Its give error "the smtp server requires a secure connection or the client was not authenticated. The server response was 5.7.57 SMTP; client was not authenticated to send anonymous mail during MAIL FROM"

Any suggestions???

Solution :

Try using same email to login to  DynFO which you configured in smtp setup. If this works go to office email portal and enable 'send as' .

Popular posts from this blog

X++ Code to run SSRS Report with parameter in D365 F&O (Example Sales Invoice )

Below is sample X++ Code to run SSRS Report with parameter in D365 F&O (Example Sales Invoice )      Args                       args = new Args();     CustInvoiceJour            custInvoiceJour;     SalesInvoiceJournalPrint   salesInvoiceJournalPrint;       select firstonly custInvoiceJour where custInvoiceJour.SalesId != '';       // Add record to be printed.     // In order to have the context table we need to set args.record().     args.record(custInvoiceJour);       salesInvoiceController = new SalesInvoiceController();     salesInvoiceController.parmReportName(         PrintMgmtDocType::construct(PrintMgmtDocumentType::SalesOrderInvoice).getDefaultReportFormat());       salesInvoiceContract = salesInvoiceController.parmReportContrac...