<html lang="en">


<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title> ETI </title>
  <script src="script.js"> </script>
  <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/emailjs-com@3/dist/email.min.js"></script>
    <script type="text/javascript">
        (function() {
        emailjs.init("user_z2aBz4bwKPhfVUgW9B5tT");
        })();
    </script>
  
</head>

<body>
 
<input  type="text" id="toName" placeholder="Enter to name" >
<input  type="text" id="fromName" placeholder="Enter from name" >
<input  type="text" id="msg" placeholder="Enter your message" >


<button onclick='sendmail()'> Send Button </button>
</body>
</html>

Comments