Email Configuration
The Send Email action from the Pipeline editor allows you to choose a user defined configuration specified on the action or a default system configuration.
The default system configuration is set in the Common section of:
C:\\ProgramData\\SpinFire\\SpinFire Manage\\Configuration\\appSettings.jsonc
Set the appropriate values for the following keys:
"Common": {
"MailServerAddress": "",
"MailServerPort": "",
"MailUseSSL": "false",
"MailUsername": "",
"MailPassword": "",
}
Example values for Outlook email:
"Common": {
"MailServerAddress": "outlook.office365.com",
"MailServerPort": "587",
"MailUseSSL": "true",
"MailUsername": "myemail@domain.com",
"MailPassword": "mypassword",
}
NOTE: After changing this file you have to restart the applications for the changes to take effect.
Without Password
If the email action needs to be used without a password (e.g. when using an internal email gateway), set MailPassword to "false" rather than an empty string:
"Common": {
"MailPassword": "false",
}