Hi!
Docker install:
Admin email setup is sending test email.
Invitation email is not coming/going.
What could be reason?
Where i see log about that?
Madis
Hi!
Docker install:
Admin email setup is sending test email.
Invitation email is not coming/going.
What could be reason?
Where i see log about that?
Madis
Hey @seamus3033, welcome to the Appsmith community. Sorry you are facing trouble here. Can you share the logs from stacks/logs/backend/backend.log
file from your self-hosted installation, when you see this error please?
Thanks!
Hey @sharat87
I am facing same issue, I checked the logs and found out exception is raised while sending emails via Amazon SES. Test email worked fine, I did follow setup guide on available on Amazon SES - Appsmith
Stacktrace:
- Unable to send email. Cause:
org.springframework.mail.MailSendException: Failed messages: com.sun.mail.smtp.SMTPSendFailedException: 554 Transaction failed: Empty address
at org.springframework.mail.javamail.JavaMailSenderImpl.doSend(JavaMailSenderImpl.java:491)
at org.springframework.mail.javamail.JavaMailSenderImpl.send(JavaMailSenderImpl.java:361)
at org.springframework.mail.javamail.JavaMailSenderImpl.send(JavaMailSenderImpl.java:356)
at com.appsmith.server.notifications.EmailSender.sendMailSync(EmailSender.java:107)
at com.appsmith.server.notifications.EmailSender.lambda$sendMail$1(EmailSender.java:62)
at reactor.core.publisher.FluxPeekFuseable$PeekFuseableSubscriber.onNext(FluxPeekFuseable.java:196)
at reactor.core.publisher.Operators$MonoSubscriber.complete(Operators.java:1816)
at reactor.core.publisher.MonoCallable.subscribe(MonoCallable.java:62)
at reactor.core.publisher.Mono.subscribe(Mono.java:4400)
at reactor.core.publisher.MonoSubscribeOn$SubscribeOnSubscriber.run(MonoSubscribeOn.java:126)
at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84)
at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
at java.base/java.lang.Thread.run(Thread.java:829)
Screenshot:
Please let me know how can I fix this?
Thanks
Hey, sorry this got missed. Can you share the value of APPSMITH_MAIL_FROM
in your docker.env
file? If its not present, or is empty, can you set it to something like noreply@mycompany.com
, and restart and see it this helps please?
Thanks @sharat87 for the reply.
I checked in docker.env, it’s set to no-reply@my-domain.com. We have verified that it works well with other application using same credentials. Please find attached screenshot for details.
I believe it’s a bug in the application layer. I was able to send a test mail while setting up SES Email on Appsmith.
Hey @monarch0111 ,
Could you check the value for APPSMITH_REPLY_TO
in your docker.env
? If it’s empty, could you set it to the same email address that you are using for APPSMITH_MAIL_FROM
and restart?
Let us know if that helps or if you still face any issues.
Hello @ankitakinger
Thanks for your reply. Yes, setting APPSMITH_MAIL_FROM
helped me solve the issue.
Thanks a lot.