meeting_followup_render_followup_html
Renders meeting followup artifacts, coaching insights, and transcript analysis into a professional HTML email using Jinja2 templates.
Instructions
Renders the meeting followup document as a professional HTML email. No LLM required - uses Jinja2 templates.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| followup_artifacts | Yes | The artifacts from Generate Followup Artifacts action. | {{followup_artifacts}} |
| coaching_insights | Yes | Insights from Generate Coaching action. | {{coaching_insights}} |
| transcript_analysis | Yes | The analysis from Analyze Transcript action. | {{transcript_analysis}} |
| user_context | No | User context from Load Followup Context action. | {{followup_context}} |
| user_context_data | No | Raw user.context data as fallback for user name/role. | {{user.context}} |
| enriched_event | Yes | The enriched event data. | {{enriched_event}} |
| output_variable_name | Yes | Variable name to store the rendered HTML. | followup_html |