mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-02-05 00:29:40 +03:00
SMTP support? #29
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @pageb018 on GitHub (Jul 6, 2018).
Is this possible? Would love to be able to send out emails when setting up users and/or adding them to collections.
@mprasil commented on GitHub (Jul 8, 2018):
This would be cool to have, just a note that the way some of the current things work would have to be changed. For example registering users or adding them to collections effectively skips the invitation step. Now this can actually be beneficial for people, that do not want to necessary use SMTP for this functionality. So if anyone feels like implementing this, I'd certainly like it to be optional and I'd hope to have the option to keep the current functionality.
@dani-garcia commented on GitHub (Jul 8, 2018):
Currently SMTP support is not something on my radar, but I'm not against it as an idea for the future as long as it's optional.
With a little research I discovered an SMTP client library for Rust (https://github.com/lettre/lettre) that seems reasonably simple to use, so maybe a proper implementation won't be particularly complex.
@pageb018 commented on GitHub (Jul 9, 2018):
Makes perfect sense. Appreciate the great work.