Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions config/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -709,6 +709,10 @@ const commands = {
const role = (args == 2) ? "hacker in residence" : "analyst";
const subject = `Applying for ${role} at Root Ventures!`;
const body = "Wow! I love your website. It's so cool. I definitely want to work with this awesome team. Here's my resume.";
term.stylePrint(`Send email to: ${email}` );
term.stylePrint(`Subject: ${subject}`);
term.stylePrint(`Body: ${body}`);

location.href = `mailto:${email}?subject=${subject}&body=${body}`;
}
}
Expand Down
Loading