Documentation ¶
Overview ¶
Copyright 2021 MIMIRO AS
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.package email
Copyright 2021 MIMIRO AS ¶
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ErrUndefinedService = eris.New("undefined service")
Functions ¶
func NewLogger ¶
func NewLogger() *zap.SugaredLogger
Types ¶
type Configuration ¶
type Configuration struct { Service string // CONSOLE MIMIRO_EMAIL_SQS(AWS) Sender string Properties Properties }
type MailConsoleService ¶
type MailConsoleService struct {
// contains filtered or unexported fields
}
func NewMailConsoleService ¶
func NewMailConsoleService() *MailConsoleService
func (*MailConsoleService) Send ¶
func (s *MailConsoleService) Send(email Mail) error
type MailSQSService ¶
type MailSQSService struct {
// contains filtered or unexported fields
}
func NewMailSQSService ¶
func NewMailSQSService(cfg Properties) *MailSQSService
func (*MailSQSService) Send ¶
func (s *MailSQSService) Send(email Mail) error
type Properties ¶
type Properties map[string]interface{}
func (Properties) ValidAWSConfig ¶
func (p Properties) ValidAWSConfig() (Config, error)