NewTestEmailSend creates and initializes new TestEmailSend form.
(app core.App)
| 29 | |
| 30 | // NewTestEmailSend creates and initializes new TestEmailSend form. |
| 31 | func NewTestEmailSend(app core.App) *TestEmailSend { |
| 32 | return &TestEmailSend{app: app} |
| 33 | } |
| 34 | |
| 35 | // Validate makes the form validatable by implementing [validation.Validatable] interface. |
| 36 | func (form *TestEmailSend) Validate() error { |
no outgoing calls
searching dependent graphs…