cold_email_2.0 / lib /support /template_email_support.py
Raykarr's picture
Second model version
6eb7feb
import streamlit as st
import traceback
import time
from lib.common.database_support import get_template_emails, add_template_email, store_sent_email, save_email_to_excel
def get_sample_emails():
return [
{
"Name": "Professional Introduction",
"Subject": "Introduction - [Your Name] from [Your Company]",
"Body": "Dear [Recipient],\n\nI hope this email finds you well. My name is [Your Name], and I am reaching out to introduce myself and [Your Company]. We specialize in [brief description of your services/products].\n\nI would love the opportunity to discuss how we might be able to collaborate. Would you be available for a brief call next week?\n\nBest regards,\n[Your Name]\n[Your Position]\n[Your Company]"
},
{
"Name": "Friendly Invitation",
"Subject": "Let's catch up over coffee!",
"Body": "Hey [Friend's Name]!\n\nIt's been too long since we last caught up. How about we grab a coffee this weekend? I'd love to hear what you've been up to!\n\nLet me know if Saturday afternoon works for you.\n\nCheers,\n[Your Name]"
},
{
"Name": "Customer Support",
"Subject": "Re: Your Recent Order #12345",
"Body": "Dear [Customer Name],\n\nThank you for contacting our support team regarding your recent order #12345. We apologize for any inconvenience you may have experienced.\n\nWe have reviewed your case and [explanation of the solution or next steps].\n\nIf you have any further questions, please don't hesitate to reach out.\n\nBest regards,\n[Your Name]\nCustomer Support Team"
},
{
"Name": "Job Application",
"Subject": "Application for [Position] - [Your Name]",
"Body": "Dear Hiring Manager,\n\nI am writing to express my strong interest in the [Position] role at [Company Name], as advertised on [where you found the job posting].\n\nWith my background in [relevant skills/experience], I am confident that I would be a valuable addition to your team. [Brief highlight of your qualifications].\n\nPlease find attached my resume and portfolio. I look forward to the opportunity to discuss how my skills and experiences align with your needs.\n\nThank you for your time and consideration.\n\nSincerely,\n[Your Name]"
},
{
"Name": "Event Invitation",
"Subject": "You're Invited: [Event Name]",
"Body": "Dear [Recipient],\n\nWe are delighted to invite you to [Event Name], taking place on [Date] at [Time] at [Location].\n\n[Brief description of the event and its purpose]\n\nPlease RSVP by [RSVP deadline] to [contact email/phone].\n\nWe look forward to seeing you there!\n\nBest regards,\n[Your Name]\n[Organization]"
},
{
"Name": "Thank You Note",
"Subject": "Thank You for Your Support",
"Body": "Dear [Name],\n\nI wanted to take a moment to express my sincere gratitude for [reason for thanking - e.g., your recent donation, attending our event, your ongoing support].\n\n[Personalized message about the impact of their action/support]\n\nThank you again for your generosity and kindness.\n\nWarmest regards,\n[Your Name]"
},
{
"Name": "Business Proposal",
"Subject": "Business Proposal: [Brief Description]",
"Body": "Dear [Recipient],\n\nI hope this email finds you well. I am reaching out to propose a business opportunity that I believe would be mutually beneficial for [Your Company] and [Their Company].\n\n[Brief overview of the proposal]\n\nKey benefits of this partnership include:\n- [Benefit 1]\n- [Benefit 2]\n- [Benefit 3]\n\nI would welcome the opportunity to discuss this proposal in more detail. Are you available for a call next week?\n\nBest regards,\n[Your Name]\n[Your Position]\n[Your Company]"
},
{
"Name": "Apology Email",
"Subject": "Our Sincere Apologies",
"Body": "Dear [Customer Name],\n\nOn behalf of [Company Name], I want to sincerely apologize for [description of the issue or mistake].\n\nWe understand the inconvenience this has caused you and take full responsibility for our error. We are taking the following steps to rectify the situation:\n\n[List of actions being taken]\n\nAs a gesture of our commitment to making this right, we would like to offer you [compensation or solution].\n\nWe value your business and hope to regain your trust.\n\nSincerely,\n[Your Name]\n[Your Position]\n[Company Name]"
}
]
def render_templates():
try:
excel_file = st.session_state.get("excel_file", "Error Not Found")
if excel_file == "Error Not Found":
raise Exception("Error Not Found")
if not st.session_state.get("user_id"):
st.warning("Please fill in your profile information first.")
return
st.title("Email Templates")
new_template = st.session_state.get("new_template", None)
show_only_new = st.session_state.get("show_new_template", False)
if show_only_new and new_template:
templates_to_show = [new_template]
else:
if "templates" not in st.session_state:
st.session_state.templates = get_sample_emails()
templates_to_show = st.session_state.templates
template_names = [template['Name'] for template in templates_to_show]
if not show_only_new:
template_names.insert(0, "Select a template")
selected_template_name = st.selectbox("Choose a template", template_names, index=0 if show_only_new else None)
if selected_template_name and selected_template_name != "Select a template":
selected_template = next((template for template in templates_to_show if template['Name'] == selected_template_name), None)
# print(selected_template)
print(selected_template, "\n\nselc\n\n")
if selected_template:
# Use session state to store editable fields
if 'current_template' not in st.session_state:
print("inside")
st.session_state.current_template = {
'sender_email': '',
'receiver_email': '',
'subject': selected_template['Subject'],
'body': selected_template['Body']
}
col1, col2 = st.columns(2)
with col1:
st.session_state.current_template['sender_email'] = st.text_input("Sender's Email", value=st.session_state.current_template['sender_email'])
st.session_state.current_template['subject'] = st.text_input("Subject", value=st.session_state.current_template['subject'])
with col2:
st.session_state.current_template['receiver_email'] = st.text_input("Receiver's Email", value=st.session_state.current_template['receiver_email'])
st.session_state.current_template['body'] = st.text_area("Email Body", value=st.session_state.current_template['body'], height=200)
col1, col2 = st.columns(2)
# with col1:
# if st.button("Save Template"):
# if st.session_state.current_template['subject'] and st.session_state.current_template['body']:
# save_email_to_excel(excel_file, st.session_state.user_id, st.session_state.current_template['subject'], st.session_state.current_template['body'])
# st.success("Template saved successfully!")
# else:
# st.warning("Please fill in the subject and body before saving.")
with col2:
if st.button("Send Email"):
if all(st.session_state.current_template.values()):
store_sent_email(excel_file, st.session_state.current_template['sender_email'], st.session_state.current_template['receiver_email'], st.session_state.current_template['subject'], st.session_state.current_template['body'])
st.success("Email sent successfully")
if st.session_state.get("new_template"):
st.session_state.pop("new_template")
if st.session_state.get("show_new_template"):
st.session_state.pop("show_new_template")
if 'current_template' in st.session_state:
st.session_state.pop("current_template")
time.sleep(1)
st.session_state.page = "Generate Email"
st.rerun()
else:
st.warning("Please fill in all fields before sending.")
else:
st.warning("Selected template not found. Please choose a valid template.")
if show_only_new:
if st.button("Back to All Templates"):
st.session_state.pop("new_template", None)
st.session_state.pop("show_new_template", None)
st.session_state.pop("current_template",None)
st.rerun()
except Exception as err:
traceback.print_exc()
print(err)