Skip to content

Instantly share code, notes, and snippets.

@hunnycode
Created December 25, 2015 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hunnycode/6edb6b2b741df2a79bf4 to your computer and use it in GitHub Desktop.
Save hunnycode/6edb6b2b741df2a79bf4 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>PHP Starter Application</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<table>
<tr>
<td style='width: 30%;'>
<img class='newappIcon' src='images/newapp-icon.png'>
</td>
<td>
<h1 id = "message"><?php echo "メール送信"; ?></h1>
</td>
</tr>
<tr>
<td>
<form method="POST" action="./send.php">
【送信先】<br><input type="text" name="email"><br>
【タイトル】<br><input type="text" name="subject"><br>
【本文】<br><textarea name="body" cols="50" rows="5">送信する本文を入力してください。</textarea><br>
<input type="submit" name="btn1" value="送信">
</form>
</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment