Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

MAILADDRESS: must be replaced with a valid e-mail address. The address is used as sender address (so the configured SMTP server must be able to send mails with this address as sender).
The same e-mail is used as the default receiver for all types of errors in the application. The receiver for logging / error mails can be configured differently.

SMTPSERVER: is the address of the SMTP server

...

Info
For advanced e-mail configuration, like configuring a SMTP server sending see Mail server as SMTP.

Use MicroSoft OAuth2 routing to send mail:

If you inspired by MicroSoft OAuth2 authorisation protocol and want to use it with our system to send mail then firstly take a look at their documentation.
Make sure you created credentials with permissions to send mail on application level.

In installation.ini you need to set next fields:

Code Block
languagetext
resources.mail.transport.type = ZfExtended_Zend_Mail_Transport_MSGraph

resources.mail.transport.email = translate5@domain.com    ; used as uniq user id
resources.mail.transport.tenantId = *your-tenantId*
resources.mail.transport.clientId = *your-clientId-or-applicationId-depends-on-ms-ui-version*
resources.mail.transport.clientSecret = '*your-client-secret*'   


Summary

The installation.ini contains:

...