Generate context-aware email replies using advanced AI that understands the content of incoming emails.
Select from professional, casual, or friendly tones to match your communication style.
Browser extension adds an "AI Reply" button directly in Gmail for seamless workflow.
Clean, modern UI built with Material-UI that works perfectly on all devices.
One-click copy of generated replies for quick insertion into your emails.
Easy deployment with Docker and CI/CD pipelines via GitHub Actions.
Note: The backend service on Render may take ~50 seconds to respond on first request due to cold start.
Web Interface
Sample Reply Example
Gmail Extension
Gmail Reply
git clone https://github.com/Kvr-10/AiEmail-Assistant.git
cd AiEmail-Assistant/backend
# Create application.properties file
echo "OPENAI_API_KEY=your-api-key" >> src/main/resources/application.properties
mvn clean install
mvn spring-boot:run
cd ../frontend
npm install
npm run dev
cd ../extension
npm install
npm run build
Then load the unpacked extension in Chrome via chrome://extensions
.
Method | Endpoint | Description |
---|---|---|
GET | / | Health check |
POST | /api/email/generate | Generate AI email reply |
{
"emailContent": "original email text",
"tone": "professional/casual/friendly"
}