Mail-To-Me is a hosted FastAPI Application that listens for HTML form submissions (like the one below) and forwards the associated form data onto an indicated email address.
<!-- Contact Form -->
<section id="contact" class="wrapper style4 vh-height">
<div class="inner">
<section>
<h4>Contact</h4>
<form method="post" action="https://mailtome.armckinney.dev/submit?recipient=<your_email_address>>
<div class="row gtr-uniform">
<div class="col-6 col-12-xsmall">
<input type="text" name="Name" id="demo-name" value="" placeholder="Name" />
</div>
<div class="col-6 col-12-xsmall">
<input type="email" name="sender" id="demo-email" value="" placeholder="Email" />
</div>
<div class="col-12 col-12-xsmall">
<input type="text" name="Subject" id="demo-message" value="" placeholder="Subject" />
</div>
<div class="col-12">
<textarea name="Message" id="demo-message" placeholder="Enter your message" rows="6"></textarea>
</div>
<div class="col-6 col-12-small">
<input type="checkbox" id="demo-human" name="Human">
<label for="demo-human">Not a robot</label>
</div>
<div class="col-12">
<ul class="actions">
<li><input type="submit" value="Send Message" class="primary" /></li>
<li><input type="reset" value="Reset" /></li>
</ul>
</div>
</div>
</form>
<h5 style="color: goldenrod"><a href="https://mailtome.herokuapp.com/"><i>Powered by Mail-To-Me</i></a></h5>
</section>
</div>
</section>
<your_email_address>
with the designated receiving email address