Quick Test SMTP Configuration

Hello,

We have install recently the solution OIM 8.1.5 with a new database for moment until recieving the HR extraction.

After setting some basic parameters at post install, there is a way to test the SMTP settings without creating a report or something like that which need to have an identity first ?

Thank you for your help.

Parents
  • Hi,

    Maybe this will help:

    Send a test mail

    The easiest way to send a test email in 1IM is to run this piece of SQL to generate a test (simple-text) email:

    (You can run this in MS SQL Server Studio or in an SQL window in Object Browser.)

    exec QBM_PJobCreate_SendMail 'testsubject','testmessage','recipient@domain','sender@domain',@genprocid='12345'

    The first address is the ‘to’ address, second is the ‘from’ address.  The last parameter is required and just needs to be some random number.

    You’ll see this go into the job queue:

     

    Which will then generate this:

     

    HTH, Barry.

Reply
  • Hi,

    Maybe this will help:

    Send a test mail

    The easiest way to send a test email in 1IM is to run this piece of SQL to generate a test (simple-text) email:

    (You can run this in MS SQL Server Studio or in an SQL window in Object Browser.)

    exec QBM_PJobCreate_SendMail 'testsubject','testmessage','recipient@domain','sender@domain',@genprocid='12345'

    The first address is the ‘to’ address, second is the ‘from’ address.  The last parameter is required and just needs to be some random number.

    You’ll see this go into the job queue:

     

    Which will then generate this:

     

    HTH, Barry.

Children