Link to home
Start Free TrialLog in
Avatar of Jim Metcalf
Jim MetcalfFlag for United States of America

asked on

Looking for an application that can generate emails off of sql

I am trying to find an application that will produce the following functionality.  Basically, i would like for this application to be able to monitor a sql database and send an email based on a record update.   I don't want to use sql mail because these emails need to be highly formatted and possibly contain attachments.

Example.

We provide inspections of buildings.   An inspector will use the application and "result" an inspection.  Once this result is submitted to a certain column in the database table, i will need the application to recognize a result has been submitted.  I will then want the application to pick up the applicant email address for this inspection and roll up the violations... again, submitted to the database in a formatted way and possibly attach a pdf that is generated by our SSRS reporting server.  Does anybody know an application that can do that?
Avatar of lcohan
lcohan
Flag of Canada image

You should be able to do that via a database table trigger ON UPDATE and I'll find a Experts Exchange previous solution for similar question.
ASKER CERTIFIED SOLUTION
Avatar of lcohan
lcohan
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Jim Metcalf

ASKER

Thanks for the tips Icohan