Python Flask that fills out a form and sends an email via SES

This commit is contained in:
2024-02-27 23:42:41 -06:00
commit b4beb3df46
3 changed files with 84 additions and 0 deletions

15
greet.html Normal file
View File

@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Greeting</title>
</head>
<body>
<h2>Hello, {{ name }}!</h2>
<p>Your phone number is: {{ phone }}</p>
<p>Your address is: {{ address }}</p>
<p>Comments:</p>
<p>{{ comments }}</p>
</body>
</html>