Oi pessoal, como vão
Estou batendo cabeça para autenticar o envio de emails do OJS3 via serviço do Amazon SES. Tentei mudar as configurações conforme envio do gmail, mas não deu certo. As configurações padrões de envio de email funcionam para o gmail, mas quando mudo para os parâmetros do Amazon SES não dá certo.
Alguém poderia me ajudar a implementar?
A configuração do config.inc.php
[email]
; Use SMTP for sending mail instead of mail()
smtp = On
; SMTP server settings
smtp_server = “email-smtp.us-east-1.amazonaws.com”
smtp_port = 465
; Enable SMTP authentication
smtp_auth = tls
smtp_username = “(removed)”
smtp_password = “(removed)”
; Allow envelope sender to be specified
; (may not be possible with some server configurations)
allow_envelope_sender = On
; Default envelope sender to use if none is specified elsewhere
default_envelope_sender = (removed)
;above verified email on amazon ses
; Enable attachments in the various “Send Email” pages.
; (Disabling here will not disable attachments on features that
; require them, e.g. attachment-based reviews)
enable_attachments = On
; Amount of time required between attempts to send non-editorial emails
; in seconds. This can be used to help prevent email relaying via OJS.
;time_between_emails = 3600
; Maximum number of recipients that can be included in a single email
; (either as To:, Cc:, or Bcc: addresses) for a non-priveleged user
;max_recipients = 4
; If enabled, email addresses must be validated before login is possible.
;require_validation = Off
; Maximum number of days before an unvalidated account expires and is deleted
;validation_timeout = 14
Documentação de email para o OJS
https://docs.pkp.sfu.ca/admin-guide/en/email
Documentação do php mailler para o Amazon SES