Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update email copy #200

Merged
merged 1 commit into from
Dec 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 15 additions & 8 deletions app/modules/utils/email_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,21 @@ async def send_email(self, to_address, repo_name, branch_name):
"subject": f"Your repository {repo_name} is ready! 🥧",
"reply_to": "dhiren@potpie.ai",
"html": f"""
<p>Hi!</p>
<p>Your repository <strong>{repo_name}</strong> at branch <strong>{branch_name}</strong> has been processed successfully.</p>
<p>You can use any of Potpie's ready-to-use agents to chat with it at:
<a href='https://app.potpie.ai/newchat'>https://app.potpie.ai/newchat</a>.
</p>
<p>Please refer this document to get started: <a href='https://potpieai.notion.site/potpie-s-beta-program-10cc13a23aa8801e8e2bd34d8f1488f5'>Potpie User Guide</a></p>
<p>Feel free to reply to this email if you have any questions.</p>
<p>Thanks, <br />Dhiren Mathur,<br /> Co-Founder, Potpie 🥧</p>
<p>Hi!</p>

<p>Great news! Your repository <strong>{repo_name}</strong> (branch: <strong>{branch_name}</strong>) has been successfully processed.</p>

<p>Ready to get started? You can now chat with your repository using our AI agents at <a href='https://app.potpie.ai/newchat?repo={repo_name}&branch={branch_name}'>app.potpie.ai</a>.</p>

<p>Check out our <a href='https://docs.potpie.ai'>documentation</a> to make the most of Potpie's features.</p>

<p>Have questions? Just reply to this email - we're here to help!</p>

<p>Best,<br />
Dhiren Mathur<br />
Co-Founder, Potpie 🥧</p>

<p>P.S. Love Potpie? Give us a ⭐ on <a href='https://github.com/Potpie-AI/potpie/'>GitHub</a>! And don't hesitate to open an issue if you run into any problems.</p>
""",
}

Expand Down
Loading