Spaces:
Sleeping
Sleeping
File size: 9,513 Bytes
6eb7feb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
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)
|