Technics:E-Mail Settings

From CoPlanner 10
Jump to navigationJump to search

Following tag has to be available in CopServer.exe.config and CopService.exe.config for the Workflow Managers.

<system.net>
   <mailsettings>
      <smtp deliveryMethod="Network" from="aboexecutor@coplanner.com">
         <network
            host="psad001.graz.coplanner.com"
            port="25"
            defaultCredentials="true"
            />
      </smtp>
   </mailsettings>
</system.net>


Following tag has to be available in AboExecutor.exe.config for the Subscription Manager.

<system.net>
   <mailsettings>
      <smtp deliveryMethod="SpecifiedPickupDirectory" from="aboexecutor@coplanner.com">
         <specifiedPickupDirectory pickupDirectoryLocation="c:\temp\pickup"/>
         <network
            host="psad001.graz.coplanner.com"
            port="25"
            defaultCredentials="true"
            />
      </smtp>
   </mailsettings>
</system.net>


  • deliveryMethod: Specifies the delivery method for e-mails. Acceptable values are network, pickupDirectoryFromIis, and specifiedPickupDirectory.
  • from: Specifies the from address for e-mails.
  • specifiedPickupDirectory: Configures the local directory for a Simple Mail Transport Protocol (SMTP) server. In this example the pickup directory is "c:\temp\pickup".
  • network: Configures the network options for an external SMTP server