mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-15 09:32:22 +03:00
fix: sender email address in resend_invitation_email.py (#2600)
This pull request fixes the sender email address in the `resend_invitation_email` function in the `resend_invitation_email.py` file. The `from` field has been changed to `sender` to ensure that the correct email address is used when sending the invitation email.
This commit is contained in:
parent
9f2a7ac80b
commit
d84b8e79d6
@ -41,7 +41,7 @@ def resend_invitation_email(
|
||||
try:
|
||||
r = send_email(
|
||||
{
|
||||
"from": brains_settings.resend_email_address,
|
||||
"sender": brains_settings.resend_email_address,
|
||||
"to": brain_subscription.email,
|
||||
"subject": "Quivr - Brain Shared With You",
|
||||
"html": html_body,
|
||||
|
Loading…
Reference in New Issue
Block a user