fix: make phone field optional for contact

This commit is contained in:
prafull-opensignlabs
2024-05-29 17:55:22 +05:30
parent 634db83e8e
commit 6f50de1ef1
25 changed files with 117 additions and 99 deletions
@@ -132,10 +132,10 @@ async function sendCompletedMail(obj) {
document_title: pdfName,
sender_name: sender.Name,
sender_mail: sender.Email,
sender_phone: sender.Phone,
sender_phone: sender?.Phone || '',
receiver_name: sender.Name,
receiver_email: sender.Email,
receiver_phone: sender.Phone,
receiver_phone: sender?.Phone || '',
expiry_date: localExpireDate,
company_name: sender.Company,
};