Thanks for your reply. I used below script working fine.
<html><head>
<script src="ClientGlobalContext.js.aspx" type="text/javascript"></script>
<script type="text/jscript">
function callfsENotification()
{
//debugger;
window.parent.Xrm.Page.data.save();
Xrm.Utility.confirmDialog("Are you sure you want to send Email Notification", function(){
var sendEmail = window.parent.Xrm.Page.getAttribute("emailtrigger");
if (sendEmail.getValue() != true)
{
//trigger the workflow by setting this value to true
sendEmail.setValue(true);
window.parent.Xrm.Page.data.save();
}window.parent.Xrm.Page.getAttribute("emailtrigger").setSubmitMode("always");
window.parent.Xrm.Page.data.save();},function(){return;});
}
</script>
<meta charset="utf-8">
<meta><meta><meta><meta><meta><meta><meta><meta><meta><meta><meta><meta></head>
<body onfocusout="parent.setEmailRange();" style="overflow-wrap: break-word;">
<button onclick="callfsENotification()" type="button">Send Email Notification</button>
</body></html>