Skip to content

Commit

Permalink
Nothing
Browse files Browse the repository at this point in the history
  • Loading branch information
Rajaravi99 committed Nov 24, 2023
1 parent 2e622e5 commit 59cd32e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ <h1 class="title link">Any Message For Me?</h1>
<p>Created and Copyright @ Ravi Nandan Ray</p>
</div>
<!-- popup -->
<!-- <div class="lightbox">
<div class="lightbox">
<div class="iframeContainer">
<div class="toolbarLB">
<span class="closeLB" onclick="lightBoxClose()"><i class="fa-solid fa-xmark"></i></span>
Expand All @@ -217,7 +217,7 @@ <h1 class="title link">Any Message For Me?</h1>
<p class="welcome">WELCOME!!</p>
<iframe width="800vw" height="100vh" frameborder="0"></iframe>
</div>
</div> -->
</div>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script src="https://smtpjs.com/v3/smtp.js"></script>
<script src="index.js"></script>
Expand Down
6 changes: 5 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ let userName = document.getElementById('Name').value;
let phone = document.getElementById('Number').value;
let email = document.getElementById('Email').value;
let message = document.getElementById('Message').value;
let messageBody = "Name " + userName + "<br/> Phone " + phone + "<br/> Email " + email;
let messageBody = "Name " + userName + "<br/> Phone " + phone + "<br/> Email " + email + "<br/> Message" + message;
console.log(userName);
console.log(phone);
console.log(email);
console.log(message);
console.log(messageBody);
function collectData(){
Email.send({
Expand Down

0 comments on commit 59cd32e

Please sign in to comment.