How to send HTML Button in email using Appscript ?
दोस्तों आज किस आर्टिकल में मैं आपको बताऊंगा कि आप किस तरीके से आप Appscript का इस्तेमाल करके आप अपने ईमेल में HTML (how to send HTML Button in email using Appscript ) बटन को भेज सकते हैं | इससे यूजर का जो भी रिस्पांस होगा उसे बटन के क्लिक पर आप उसके रिस्पांस को अपने Google Sheet के अंदर स्टोर कर सकते हैं | जिससे बार-बार आपको यूजर से फॉलो अप लेने की जरूरत नहीं पड़ेगी |
Read Also: make telegram chat bot to automate your business
function doGet(e){
console.log(e)
let name1 = e.parameter.name1;
let name2 = e.parameter.name2;
if(e.parameter.status =="Accepted"){
return HtmlService.createHtmlOutput(`${name1} Thanks for your Acceptance`)
}else{
return HtmlService.createHtmlOutput(`${name2} Thanks for your Rejection`)
}
}
function sendMail(){
let email = "amit.tiwari726@gmail.com";
let subject = "This is for Offer message";
let webAppUrl = "https://script.google.com/macros/s/AKfycbx2iITrod2pXRAKHspxQg5BDqkM8B4BP7_amVKiB0Z1eBfu_PwlAq4CFzA6gm3EGhyOlg/exec";
let name1 = encodeURIComponent("Kishan Kumar");
let name2 = encodeURIComponent("Tech Gyan Amit");
let htmlContent = `<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="messagebox">
<p>R u interested?</p>
<a href="${webAppUrl}?status=Accepted&name1=${name1}" style="background-color:green; padding:10px 15px; color:#fff; border:none; cursor: pointer; text-decoration:none">Yes</a>
<a href="${webAppUrl}?status=Rejected&name2=${name2}" style="background-color:red; padding:10px 15px; color:#fff; border:none; cursor: pointer; text-decoration:none">No</a>
</div>
</body>
</html>`;
MailApp.sendEmail({
to: email,
subject: subject,
htmlBody: htmlContent
});
}
0 टिप्पणियाँ
Thanks For Message Me if any issue please feel free to contact