--- interface Props { postTitle: string; } const { postTitle } = Astro.props; const emailSubject = encodeURIComponent(`Re: ${postTitle}`); const mailtoLink = `mailto:contact@stevedylan.dev?subject=${emailSubject}`; ---