Versions in this module Expand all Collapse all v0 v0.0.1 Nov 7, 2023 Changes in this version + type ReminderEmailNotification struct + func NewReminderEmailNotification(mailConfig config.SMTPMailConfig) *ReminderEmailNotification + func (r *ReminderEmailNotification) GenerateMessageBuffer(fromAddress mail.Address, to string, cc []string, subject string, body string) bytes.Buffer + func (r *ReminderEmailNotification) PrepareHTMLTemplate(reminder domain.Reminder) (string, error) + func (r *ReminderEmailNotification) SendEmail(receivers []string, subject string, body string) error + type ReminderFCMNotification struct + func NewReminderFCMNotification(ctx context.Context, fcmClient *messaging.Client) ReminderFCMNotification + func (r *ReminderFCMNotification) SendMessage(token string, title string, body string) error