Skip to content

Commit 3af799d

Browse files
Fix email deliverability: send from SPF-verified subdomain
Emails were sent from noreply@octopodas.com but SPF record only exists for send.octopodas.com. This caused emails to land in spam or be rejected. Changed default from address to noreply@send.octopodas.com which has proper SPF, DKIM, and DMARC records via Resend. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent e631b56 commit 3af799d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

synrix_runtime/api/cloud_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ def _verify_code(email: str, code: str) -> bool:
588588
# Resend email integration
589589
# ---------------------------------------------------------------------------
590590
_RESEND_API_KEY = os.environ.get("RESEND_API_KEY", "")
591-
_RESEND_FROM = os.environ.get("RESEND_FROM_EMAIL", "Octopoda <noreply@octopodas.com>")
591+
_RESEND_FROM = os.environ.get("RESEND_FROM_EMAIL", "Octopoda <noreply@send.octopodas.com>")
592592

593593
def _send_verification_email(email: str, first_name: str, code: str):
594594
"""Send a verification code email via Resend."""

0 commit comments

Comments
 (0)