I am trying to send an email notification at the end of my provisioning process. I can see by log messages that it is hitting the code and I don’t see any errors in the logs. I sent a test message from the appliance ui and it worked. I discovered I needed to turn on the notifier role on the appliance and I did that. I attempted to replicate in rails c from the appliance and this was the result:
$evm.execute(:send_email, ‘changed.this@abc.com’, ‘no-reply@abc.com’, ‘Hello’, ‘Hello’)
PostgreSQLAdapter#log_after_checkout, connection_pool: size: 5, connections: 1, in use: 1, waiting_in_queue: 0
PostgreSQLAdapter#log_after_checkin, connection_pool: size: 5, connections: 1, in use: 0, waiting_in_queue: 0
So it looks like it did something but I’m still not getting an error or the email in my inbox.