14 lines
226 B
Go
14 lines
226 B
Go
|
|
package entity
|
||
|
|
|
||
|
|
type (
|
||
|
|
SendEmailNotificationParam struct {
|
||
|
|
Sender string
|
||
|
|
Recipient string
|
||
|
|
CcEmails []string
|
||
|
|
Subject string
|
||
|
|
TemplateName string
|
||
|
|
TemplatePath string
|
||
|
|
Data interface{}
|
||
|
|
}
|
||
|
|
)
|