Home > Advanced Functions > Setting up Email

Setting up Email

 

IMS uses either your default email client or you may use the following steps:

The email configuration settings are stored in the file:

"sscViewModule.exe.config". It is in the application directory:

(C:\Program Files\Imminent Technologies, Inc\IMS 4 View Module). The email settings are located about halfway down the page.

The items shown below in red are the setting you will need to change.

<userSettings>

<My.MySettings>

<setting name="SMTPServerName" serializeAs="String">

<value>SERVER NAME OR IP</value>This will be the email server you will be using for outgoing emails

</setting>

</My.MySettings>

</userSettings>

<applicationSettings>

<My.MySettings>

<setting name="SenderEmail" serializeAs="String">

<value>YOUR EMAIL ADDRESS</value>This will be the from email address displayed

</setting>

<setting name="SenderToEmail" serializeAs="String">

<value>DEFAULT TO ADDRESS</value>This is the email address the message is going to.

</setting>

<setting name="SMTPPortNo" serializeAs="String">

<value>25</value> 25 is the default

</setting>

<setting name="SMTPEnableSSL" serializeAs="String">

<value>0</value> 1= use ssl, 0 = no encryption

</setting>

<setting name="SMTPAUTHRequired" serializeAs="String">

<value>1</value>1 = authintication required 0 = not required

</setting>

<setting name="SMTPUser" serializeAs="String">

<value>USER NAME</value>Used for authintication (if required)

</setting>

<setting name="SMTPPassword" serializeAs="String">

<value>PASSWORD</value>Used for authintication (if required)

</setting>

<setting name="SMTPEmailDisplayName" serializeAs="String">

<value>YOUR NAME</value>The name displayed for the from address

</setting>

</My.MySettings>

</applicationSettings>