-
Notifications
You must be signed in to change notification settings - Fork 0
/
mail.html
84 lines (75 loc) · 2.94 KB
/
mail.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script type="text/javascript" src="script.js"></script>
<script type="text/javascript" src="dict.js"></script>
<link rel="stylesheet" href="style.css">
<title>Գրել Նամակ</title>
<link rel="shortcut icon" type="x-icon" href="icon.png">
<script type="text/javascript"
src="https://cdn.jsdelivr.net/npm/@emailjs/browser@4/dist/email.min.js">
</script>
<script type="text/javascript">
(function(){
emailjs.init({
publicKey: "DD5BYOaoo8cKlODAx",
});
})();
</script>
</head>
<body>
<div class="title">
<h1 >ԳՐԵԼ ՆԱՄԱԿ</h1>
<!-- <h4>© MillKeny 2023</h4> -->
<h2>Կարող եք գրել E-Mail հենց հիմա՝</h2>
<input type="text" id="name" placeholder="Ձեր Անունը" style="width: 300px;">
<br>
<input type="text" id="email" placeholder="Ձեր E-Mail" style="width: 300px;">
<br>
<input type="text" id="msg" placeholder="Ձեր Նամակը" style="width: 300px;">
<br>
<button onclick="sendMail()" class="srchd">Ուղարկել</button>
<br>
<h2>Կամ գրել անձամբ՝</h2>
<a href="mailto:defartyom@gmail.com">defartyom@gmail.com</a>
</div>
<script>
function setid(id, txt) {
document.getElementById(id).value = txt;
}
function getid(id) {
return document.getElementById(id).value;
}
const validateEmail = (email) => {
return String(email)
.toLowerCase()
.match(
/^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|.(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/
);
};
function sendMail() {
var params = {
name: getid("name"),
email: getid("email"),
msg: getid("msg")
};
const serviceID = "gmail";
const templateID = "gmail";
if(getid("name") != "" && getid("email") != "" && getid("msg") != ""){
if(validateEmail(getid("email"))){
emailjs.send(serviceID, templateID, params)
.then(res=>{
setid("name", "")
setid("email", "")
setid("msg", "")
console.log(res);
alert("Նամակը Ուղարկվեց!")
})
.catch(err=>console.log(err));
} else alert("Սխալ ձևաչափի E-Mail");
} else alert("Լրացրեք բոլոր դաշտերը՝ Նամակ ուղարկելու համար!");
}
</script>
</body>
</html>