Postby murray » Sat Apr 18, 2015 9:45 pm
Hi Omash,
Your question is far too non-specific to be able to give a specific answer. I can, however, give some very general guidance:
1. Find out how email actually works (e.g. the SMTP protocol, etc.).
2. Find out how your Jade application sends emails.
When you have understanding of these two concepts, then either of the two following outcomes are possible:
1. You will understand the solution to your problem (or else why there is no practical solution).
2. You will have some specific, detailed questions to ask to complete your understanding.
At a guess, based on your previous postings, are you possibly using the CnSMTP class in Jade's CardSchema to send the emails? If so, then the CardSchema documentation has a whole document on this class and how to send emails. It also includes instruction on how to obtain a status for sent emails. If I recall correctly, this inolves subscribing to a Jade Notification (which requires a userNotification event handler). The "send" is executed asynchronously, generating an event upon completion. I have seen a mistake by one of our programmers where no subscription was made to the Notification, so no event was ever notified for the successful or unsuccessful completion (the assumption being made was that emails were always sent). In this case the userNotification() event handler can check for the completion status code and take action accordingly.
Murray (N.Z.)