> I have a question about sending emails. I have a customer service ELog
> currently running but I would like to have an option to be able to pick
> from a list of people, one or more than one to send emails to with the
> logbook entry as the body. I am currently using the email option to send
> emails to a list if an emergency is used in a category but I would like to
> be able to send the entry to different people at different times. I would
> have everyone pre-entered with their names and emails and you could check
> a box by the person or people you want the log entry sent. I wasn't sure
> if this is possible with the current system.
It is. Put an MOptions in you config file, and then put individual email
statements there. Like
Attributes = ..., Notify
MOptions Notify = Joe, Jack, Jim
Email Notify Joe = joe@fujicolor.com
Email Notify Jack = jack@fujicolor.com
Email Notify Jim = jim@fujicolor.com
What this does it give you a checkbox for each name. If the check box is
checked, then the corresponding email statement is executed. Note that the
email address does not have to correspond to the "Notify" value. You could also
use completely different names, like "MOptions Notify = Security, Police,
Admin", and then put some email address from specific people there. |