the module uses drupal_mail to send out emails to users and admins for various events. The i5k specific part of those emails needs to move to a hook_mail_alter and/or an admin form. I think hook_mail_alter will be the better solution since it gives the admins more control over the messages.
In addition the message is built with the below two styles
I believe that in the first case, we will want to name the body section. This should allow people to hook in and replace that section. In the second type, it wont be alterable without replacing the whole message so it should move to the array form.
the module uses
drupal_mail
to send out emails to users and admins for various events. The i5k specific part of those emails needs to move to a hook_mail_alter and/or an admin form. I think hook_mail_alter will be the better solution since it gives the admins more control over the messages.In addition the message is built with the below two styles
I believe that in the first case, we will want to name the body section. This should allow people to hook in and replace that section. In the second type, it wont be alterable without replacing the whole message so it should move to the array form.