How to configure SMTP Email integration in CA Client Automation?
Client Automation - All versions
SMTP Email integration can be configured using the following configuration policy:
There are 2 parameters that need to be set
This is the address that is displayed in the from mail header. Update this configuration policy parameter to a valid Sender email address.
If no email is sent, verify that the SMTP server is configured to allow the host to send emails.
There could be some configuration that might restrict only the SMTP server itself to send emails.
The Client Automation Manager host needs to be a trusted host to send emails in this type of environment.
To test if the Client Automation Manager is able to send emails, check if you are able to use telnet
to login to the SMTP server and run SMTP commands:
This should send an email from the SMTP server to the defined recipient. If it fails, then the
SMTP server configuration will need to be investigated and altered to allow this.
Example
SMTP server = mysmtpserver.forward.inc.local
recipient address = [email protected]
telnet mysmtpserver.forward.inc.local 25
helo forward.inc.local
mail from: [email protected]
rcpt to:[email protected]
data
Subject:This is a test
This is a test
.
quit