{% extends 'base.html' %} {% load static %} {% block title %}Email Writer Agent - Quantum Tasks AI{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% include "components/agent_header.html" with agent_title="Email Writer" agent_subtitle="Generate professional emails with AI-powered content creation" %} {% include "components/quick_agents_panel.html" %} {% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %}

📧 Email Details

{% csrf_token %}

đŸ“Ŧ Email Information

Choose the type of email you want to generate
Enter the name or title of the person/team you're writing to
Optional - we can generate an appropriate subject line if left blank

âœī¸ Content & Style

Describe the key points and purpose of your email
Choose the appropriate tone for your email
How detailed should the email be?
{% if user.is_authenticated %} {% if user.wallet_balance >= 3.00 %} {% else %}
Insufficient balance! You need 3.00 AED.
💰 Top Up Wallet {% endif %} {% else %} 🔑 Login to Continue {% endif %}

â„šī¸ How It Works

  1. Choose email type and recipient
  2. Describe your message and purpose
  3. Select tone and length preferences
  4. Get professional AI-generated email
{% include "components/processing_status.html" with status_title="Generating Email..." status_text="Creating professional email content..." %} {% include "components/results_container.html" with results_title="Generated Email" %}
{% endblock %} {% block extra_js %} {% endblock %}