Fix spellings

This commit is contained in:
CHIEFSOFT\ameye
2023-12-09 17:55:03 -05:00
parent b77a284216
commit d6980519be
3 changed files with 6 additions and 6 deletions
@@ -72,12 +72,12 @@ border: none;
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="bodycopy">
<b>Dear {{member_firstname}}</b>,
<b>Dear {{client_firstname}}</b>,
</td>
</tr>
<tr>
<td class="bodycopy">
You have requested extenstion of timeline for <b>{{contract}}</b> as shown below at <a href="https://{{server_name}}/eoffer?offerID={{offer_code}}">{{site_name}}</a> .
You have requested an extension of the timeline for <b>{{contract}}</b> as shown below at <a href="https://{{server_name}}/eoffer?offerID={{offer_code}}">{{site_name}}</a> .
</td>
</tr>
</table>
@@ -107,7 +107,7 @@ border: none;
</td>
</tr>
<tr>
<td class="bodycopy"><b>Please login into your account to accept or reject the completion of this task.</b>
<td class="bodycopy"><b>The status of the task will change once the extension is approved or rejected.</b>
</td>
</tr>
</table>
@@ -107,7 +107,7 @@ border: none;
</td>
</tr>
<tr>
<td class="bodycopy"><b>Please login into your account to accept or reject the completion of this task.</b>
<td class="bodycopy"><b>Please login into your account to accept or reject the extension request of this task.</b>
</td>
</tr>
</table>
+2 -2
View File
@@ -1075,12 +1075,12 @@ long project_email(long mailtype, CVars in, CVars &out) {
case CONTRACT_REQUEST_TIMELINE:
vars2form(out, form);
form.LetStr("subject", "Due Date Extenstion Requsted");
form.LetStr("subject", "Due Date Extension Requsted");
form.LetStr("email", out["member_email"].c_str());
form.Email("PROJ/contract_extension_request_m.mailfile");
vars2form(out, form);
form.LetStr("subject", "Due Date Extenstion Request Sent");
form.LetStr("subject", "Due Date Extension Request Sent");
form.LetStr("email", out["client_email"].c_str());
form.Email("PROJ/contract_extension_request_c.mailfile");
break;