1. Modify one or more of the email templates in the Website\gs\templates directory so that the [Body] section contains HTML instead of plain text.
2. Modify the function Website\CodeFiles\Controllers\EmailController.SendNotificationEmail so that it calls the overload of the SendMail function that includes the isBodyHtml parameter. Set this parameter to true.
Note: You will notice that the new version of SendMail you will be calling takes a MailAddressCollection parameter instead of a MailAddress, so you'll have to modify SendNotificationEmail to wrap your MailAddress into a collection. Use this code:
Code:MailAddressCollection mailAddresses = new MailAddressCollection();
mailAddresses.Add(emailRecipient);
Roger Martin
Creator and Lead Developer of Gallery Server Pro