compose_email.tape

 1# Screenshot: Email Composition
 2# Shows the compose screen with Markdown content being written
 3
 4Output screenshots/compose_email.gif
 5
 6Set FontSize 14
 7Set FontFamily "JetBrainsMono Nerd Font"
 8Set Width 1400
 9Set Height 800
10Set Theme "Catppuccin Mocha"
11Set Padding 20
12Set WindowBar Colorful
13Set WindowBarSize 40
14Set BorderRadius 10
15
16Hide
17Type "go run ."
18Enter
19Show
20
21Sleep 2s
22
23# Navigate to Compose Email
24Down
25Sleep 300ms
26Enter
27Sleep 1.5s
28
29# Type recipient
30Type "alice@example.com"
31Sleep 200ms
32Tab
33Sleep 200ms
34Tab
35Sleep 100ms
36Tab
37Sleep 200ms
38
39# Type subject
40Type "Weekly Project Update"
41Sleep 200ms
42Tab
43Sleep 300ms
44
45# Type email body with Markdown
46Type "# Project Update"
47Enter
48Enter
49Type "Hi team, here's our **weekly update**:"
50Enter
51Enter
52Type "## Completed"
53Enter
54Type "- Shipped new dashboard redesign"
55Enter
56Type "- Fixed authentication bug in production"
57Enter
58Type "- Added unit tests for core modules"
59Enter
60Enter
61Type "## In Progress"
62Enter
63Type "- API rate limiting implementation"
64Enter
65Type "- Database migration planning"
66Enter
67Enter
68Type "Best regards"
69Sleep 800ms
70
71Screenshot screenshots/compose_email.png