Browse Source

fix for sms tepmpate

Ime-london-webcore
shakun 10 months ago
parent
commit
870ac51f79
  1. 4
      Swift.API/GoogleAuthenticator/GoogleAuthenticatorAPI.cs
  2. 10
      Swift.web/Admin/Default.aspx
  3. 12
      Swift.web/AgentNew/SendTxn/SendIntlReceipt.aspx.cs
  4. 25
      Swift.web/AgentNew/SendTxn/SendV2.aspx.cs
  5. 51
      Swift.web/AgentNew/js/SendTxn/sendTxnInfo.js
  6. 24
      Swift.web/DashboardV2/Dashboard2.aspx.cs
  7. 18
      Swift.web/MobileRemit/Admin/Operation/EditCustomerForApproval.aspx.cs
  8. 2
      Swift.web/MobileRemit/Admin/Operation/VerifyMobileCustomer.aspx.cs
  9. 2
      Swift.web/Payment/trans_payment_success.aspx.cs
  10. 4
      Swift.web/Remit/Transaction/ApproveTxn/holdTxnList.aspx.cs
  11. 2
      Swift.web/Remit/Transaction/ApproveTxn/holdTxnListMobile.aspx.cs
  12. 4
      Swift.web/Remit/Transaction/Reports/DailySendingReportAgent/DailySendingReportAgent.aspx
  13. 5
      Swift.web/Remit/Transaction/VerifyMobileTransaction/VerifyMobileTransaction.aspx
  14. 2
      Swift.web/Remit/Transaction/VerifyMobileTransaction/VerifyMobileTransaction.aspx.cs
  15. 10
      Swift.web/SwiftSystem/UserManagement/AgentUserSetup/List.aspx.cs
  16. 10
      Swift.web/SwiftSystem/UserManagement/ApplicationUserSetup/List.aspx.cs

4
Swift.API/GoogleAuthenticator/GoogleAuthenticatorAPI.cs

@ -14,7 +14,7 @@ namespace Swift.API.GoogleAuthenticator
string userUniqueKeyEncrypted = EncryptDecryptUtility.Encrypt(userName + _key, _keyForEncDec);
Utility.WriteSession("UserUniqueKey", userUniqueKeyEncrypted);
var _googleSetupInfo = _tfa.GenerateSetupCode("JME REMIT", userName, userUniqueKeyEncrypted, 200, 200, true);
var _googleSetupInfo = _tfa.GenerateSetupCode("IME LONDON", userName, userUniqueKeyEncrypted, 200, 200, true);
_model.SetupCode = _googleSetupInfo.ManualEntryKey;
_model.BarCodeImageUrl = _googleSetupInfo.QrCodeSetupImageUrl;
@ -25,7 +25,7 @@ namespace Swift.API.GoogleAuthenticator
{
GoogleAuthenticatorModel _model = new GoogleAuthenticatorModel();
var _googleSetupInfo = _tfa.GenerateSetupCode("JME REMIT", userName, userUniqueKeyEncrypted, 200, 200, true);
var _googleSetupInfo = _tfa.GenerateSetupCode("IME LONDON", userName, userUniqueKeyEncrypted, 200, 200, true);
_model.SetupCode = _googleSetupInfo.ManualEntryKey;
_model.BarCodeImageUrl = _googleSetupInfo.QrCodeSetupImageUrl;
_model.ManualEntryKey = _googleSetupInfo.ManualEntryKey;

10
Swift.web/Admin/Default.aspx

@ -87,22 +87,22 @@
<script src="/ui/js/jquery.min.js" type="text/javascript"></script>
<script src="/ui/bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
<script src="/js/functions.js" type="text/javascript"></script>
<script src="Bootstrap/js/jquery.backstretch.min.js" type="text/javascript"></script>
<%-- <script src="Bootstrap/js/jquery.backstretch.min.js" type="text/javascript"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-form-validator/2.2.8/jquery.form-validator.min.js" type="text/javascript"></script>
<%-- <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-form-validator/2.2.8/jquery.form-validator.min.js" type="text/javascript"></script>--%>
<script type="text/javascript">
<%--<script type="text/javascript">
$(".login-bg").backstretch([
"../images/1b.png",
], { duration: 4000, fade: 750 });
</script>
</script>--%>
<script type="text/javascript">
ipt> function checkSubmit(e) {
function checkSubmit(e) {
if (e && e.keyCode == 13) {
// document.forms[0].submit();
document.getElementById("<%=btnLogin.ClientID%>").click();

12
Swift.web/AgentNew/SendTxn/SendIntlReceipt.aspx.cs

@ -90,9 +90,9 @@ namespace Swift.web.AgentNew.SendTxn
controlNo.Text = sRow["controlNo"].ToString();
createdBy.Text = sRow["companyaddress"].ToString();
approvedDate.Text = DateTime.Parse(sRow["createdDate"].ToString()).ToString("yyyy-MM-dd hh:mm:ss tt");
cAmt.Text = GetStatic.ShowWithoutDecimal(sRow["cAmt"].ToString()) + "&nbsp" + sRow["collCurr"].ToString();
serviceCharge.Text = GetStatic.ShowWithoutDecimal(sRow["serviceCharge"].ToString()) + "&nbsp" + sRow["collCurr"].ToString();
tAmt.Text = GetStatic.ShowWithoutDecimal(sRow["tAmt"].ToString()) + "&nbsp" + sRow["collCurr"].ToString();
cAmt.Text = GetStatic.ShowDecimal(sRow["cAmt"].ToString()) + "&nbsp" + sRow["collCurr"].ToString();
serviceCharge.Text = GetStatic.ShowDecimal(sRow["serviceCharge"].ToString()) + "&nbsp" + sRow["collCurr"].ToString();
tAmt.Text = GetStatic.ShowDecimal(sRow["tAmt"].ToString()) + "&nbsp" + sRow["collCurr"].ToString();
exRate.Text = sRow["exRate"].ToString() + "&nbsp" + sRow["payoutCurr"].ToString();
pAmt.Text = GetStatic.ShowDecimal(sRow["pAmt"].ToString()) + "&nbsp" + sRow["payoutCurr"].ToString();
depositType.Text = sRow["collMode"].ToString();
@ -155,16 +155,16 @@ namespace Swift.web.AgentNew.SendTxn
string controlNo = sRow["controlNo"].ToString();
string sms = "";
if (sRow["paymentMethod"].ToString().ToLower() == "bank deposit")
if (sRow["paymentMethod"].ToString().ToLower() == "bank deposit" || sRow["paymentMethod"].ToString().ToLower() == "Mobile Wallet")
{
FullName _bankName = GetStatic.ParseName(sRow["pBankName"].ToString());
sms += "Dear " + _fullNameS.FirstName + ", Your TXN with Reference Number " + controlNo + " has been completed. Your Receiver account will be credited within 1 Working Hour.";
sms += "Dear " + _fullNameS.FirstName + ", Your TXN with Reference Number " + controlNo + " has been completed. If you have already deposited the amount to us your Receiver account will be credited within 1 Working Hour.";
sms += "\nThank you!";
}
else
{
sms += "Dear " + _fullNameS.FirstName + ", Your TXN with Reference Number " + controlNo + " has been completed. Your Receiver can now collect the transaction within 10 minutes from any IME London Agent.";
sms += "Dear " + _fullNameS.FirstName + ", Your TXN with Reference Number " + controlNo + " has been completed.If you have already deposited the amount to us your Receiver can collect the transaction from any payout location within 1 hour.";
sms += "\nThank you!";
}

25
Swift.web/AgentNew/SendTxn/SendV2.aspx.cs

@ -579,17 +579,20 @@ namespace Swift.web.AgentNew.SendTxn
private void Authenticate()
{
_sdd.CheckAuthentication(ViewFunctionId);
if (_sdd.HasRight(ManualEditServiceCharge))
{
editServiceCharge.Disabled = false;
allowEditSC.Value = "Y";
}
else
{
allowEditSC.Value = "N";
editServiceCharge.Disabled = true;
lblServiceChargeAmt.Attributes.Add("readonly", "readonly");
}
//if (_sdd.HasRight(ManualEditServiceCharge))
//{
// editServiceCharge.Disabled = false;
// allowEditSC.Value = "Y";
//}
//else
//{
// allowEditSC.Value = "N";
// editServiceCharge.Disabled = true;
// lblServiceChargeAmt.Attributes.Add("readonly", "readonly");
//}
allowEditSC.Value = "N";
editServiceCharge.Disabled = true;
lblServiceChargeAmt.Attributes.Add("readonly", "readonly");
}
private void GetRequiredField()

51
Swift.web/AgentNew/js/SendTxn/sendTxnInfo.js

@ -193,8 +193,8 @@ function ClearTxnData() {
function CalculateTxn(amt, obj, isManualSc) {
debugger
var agentUser = $("#" + mId + "hddTxnRequestFromAgent").val();
CheckAgentQuota(agentUser);
// checkPaymentOption();
// CheckAgentQuota(agentUser);
checkPaymentOption();
//alert($('#ContentPlaceHolder1_branch').val());
var collAmt = $("#" + mId + "txtCollAmt").val();
var payAmt = $("#" + mId + "txtPayAmt").val();
@ -231,39 +231,28 @@ function CalculateTxn(amt, obj, isManualSc) {
var rewardAmt = $("#" + mId + "txtRewardAmt").val();
var partnerId = $("#" + mId + "ddlPayoutPartner").val();
// alert(partnerId);
var quota = $("#" + mId + "hdnQuota").val();
if (quota == "Y") {
$("#" + mId + "allowEditSC").val("N");
$("#" + mId + "editServiceCharge").attr('disabled');
$("#" + mId + "editServiceCharge").attr('readonly');
}
else if (partnerId == '394130') {
//var quota = $("#" + mId + "hdnQuota").val();
//if (quota == "Y") {
// $("#" + mId + "allowEditSC").val("N");
// $("#" + mId + "editServiceCharge").attr('disabled');
// $("#" + mId + "editServiceCharge").attr('readonly');
//}
//else if (partnerId == '394130') {
//if ($("#" + mId + "allowEditSC").val() === 'N') {
$("#" + mId + "allowEditSC").val("N");
$("#" + mId + "editServiceCharge").attr('disabled');
$("#" + mId + "editServiceCharge").attr('readonly');
}
else {
$("#" + mId + "allowEditSC").val("Y");
$("#" + mId + "editServiceCharge").removeAttr('disabled');
$("#" + mId + "editServiceCharge").removeAttr('readonly');
}
if ($("#" + mId + "allowEditSC").val() === 'N') {
$("#" + mId + "editServiceCharge").prop("checked", false);
}
else {
$("#" + mId + "editServiceCharge").prop("checked", true);
}
// var ischecked = $(this).is(':checked');
var ischecked = $("#" + mId + "editServiceCharge").is(':checked');
if (ischecked) {
$("#" + mId + "lblServiceChargeAmt").removeAttr('disabled');
$("#" + mId + "lblServiceChargeAmt").removeAttr('readonly');
}
else {
$("#" + mId + "lblServiceChargeAmt").attr('disabled', true);
$("#" + mId + "lblServiceChargeAmt").attr('readonly', true);
}
//var ischecked = $("#" + mId + "editServiceCharge").is(':checked');
//if (ischecked) {
// $("#" + mId + "lblServiceChargeAmt").removeAttr('disabled');
// $("#" + mId + "lblServiceChargeAmt").removeAttr('readonly');
//}
//else {
// $("#" + mId + "lblServiceChargeAmt").attr('disabled', true);
// $("#" + mId + "lblServiceChargeAmt").attr('readonly', true);
//}
var collAmt = parseFloat($("#" + mId + "txtCollAmt").val().replace(',', '').replace(',', '').replace(',', ''));
var availableBal = parseFloat($('#availableBal').text().replace(',', '').replace(',', '').replace(',', ''));
@ -285,7 +274,7 @@ function CalculateTxn(amt, obj, isManualSc) {
}
if (isManualSc === 'N') {
if (obj === '' || obj === null) {
if (obj === '' || obj === null || obj === undefined || obj === 'undefined') {
if (document.getElementById(mId + "txtPayAmt").disabled) {
obj = 'cAmt';
amt = GetValue(mId + "txtCollAmt");

24
Swift.web/DashboardV2/Dashboard2.aspx.cs

@ -58,22 +58,22 @@ namespace Swift.web.DashboardV2
customerKycStatusList.Attributes.Remove("style");
//lawsonCardSummaryRoleDiv.Attributes.Remove("style");
if (!sl.HasRight(TodaysSentPaidRole))
todaysSentPaidRoleDiv.Attributes.Add("style", "display:none;");
if (!sl.HasRight(TransactionStaticsRole))
transactionStaticsRoleDiv.Attributes.Add("style", "display:none;");
if (!sl.HasRight(BranchTransactionRole))
branchTransactionRoleDiv.Attributes.Add("style", "display:none;");
if (!sl.HasRight(CustomerOverviewRole))
customerOverviewRoleDiv.Attributes.Add("style", "display:none;");
if (!sl.HasRight(ComplianceOfacRole))
complianceOfacRoleDiv.Attributes.Add("style", "display:none;");
//if (!sl.HasRight(TodaysSentPaidRole))
// todaysSentPaidRoleDiv.Attributes.Add("style", "display:none;");
//if (!sl.HasRight(TransactionStaticsRole))
// transactionStaticsRoleDiv.Attributes.Add("style", "display:none;");
//if (!sl.HasRight(BranchTransactionRole))
// branchTransactionRoleDiv.Attributes.Add("style", "display:none;");
//if (!sl.HasRight(CustomerOverviewRole))
// customerOverviewRoleDiv.Attributes.Add("style", "display:none;");
//if (!sl.HasRight(ComplianceOfacRole))
// complianceOfacRoleDiv.Attributes.Add("style", "display:none;");
//if (!sl.HasRight(AgentwiseNumberRole))
// agentWiseTxnRoleDiv.Attributes.Add("style", "display:none;");
//if (!sl.HasRight(UserwiseNumberRole))
// userwiseDailyTxnRoleDiv.Attributes.Add("style", "display:none;");
if (!sl.HasRight(customerKycStatus))
customerKycStatusList.Attributes.Add("style", "display:none;");
//if (!sl.HasRight(customerKycStatus))
// customerKycStatusList.Attributes.Add("style", "display:none;");
//if (!sl.HasRight(LawsonSummaryRole))
// lawsonCardSummaryRoleDiv.Attributes.Add("style", "display:none;");
}

18
Swift.web/MobileRemit/Admin/Operation/EditCustomerForApproval.aspx.cs

@ -520,7 +520,7 @@ namespace Swift.web.MobileRemit.Admin.Operation
}
else
{
Response.Redirect("/DashboardV2/Dashboard.aspx");
Response.Redirect("/Remit/Administration/OnlineCustomer/ApprovedList.aspx");
}
}
@ -786,6 +786,22 @@ namespace Swift.web.MobileRemit.Admin.Operation
cdid = r[0];
}
}
if (keyName.ToLower().Equals("reg_customerSelfie"))
{
documentTypeName = "Customer Selfie";
documentType = "11440";
if (hdn_FacePicture != null & !string.IsNullOrEmpty(hdn_FacePicture.Value))
{
var r = hdn_FacePicture.Value.Split('|');
if (r.Count() > 1)
{
filename = r[0];
cdid = r[1];
}
else
cdid = r[0];
}
}
if (file.ContentLength > 0 && !string.IsNullOrEmpty(file.FileName))
{
string fileNameNew = (!string.IsNullOrWhiteSpace(file.FileName) ? UploadDocument(file, customerId, documentTypeName, membershipId, registerDate, filename, out fileType)

2
Swift.web/MobileRemit/Admin/Operation/VerifyMobileCustomer.aspx.cs

@ -118,7 +118,7 @@ namespace Swift.web.MobileRemit.Admin.Operation
//}
if (kycStatus == "NOT_COMPLETED" || kycStatus == "PROCESSING")
{
customLinkText.Append("&nbsp;<a class=\"btn btn-xs btn-success\" title=\"Approve\" href=\"/Remit/Administration/CustomerRegistration/UpdateKYC.aspx?customerId=@customerId\" ><i class=\"fa fa-check\"></i></a>");
customLinkText.Append("&nbsp;<a class=\"btn btn-xs btn-primary\" title=\"Edit\" href=\"/MobileRemit/Admin/Operation/EditCustomerForApproval.aspx?customerId=@customerId&requestFrom=mobile&m=ap&type=approve\"><i class=\"fa fa-pencil\"></i></a>");
}
_grid.CustomLinkText = customLinkText.ToString();
string sql = "EXEC [proc_customerKYC] @flag = 'filterByKycStatus',@kycStatus='" + Request.QueryString["kycStatus"] + "' ";

2
Swift.web/Payment/trans_payment_success.aspx.cs

@ -24,7 +24,7 @@ namespace Swift.web.Payment
DataSet ds = _remit.ExecuteDataset(sql);
Utility.LogRequest(lblorderreference.Text, "TRUSTPAY", "trust_payment_success", requestreference, sql, transactionreference);
Utility.LogRequest(transactionreference, "TRUSTPAY", "trust_payment_success", requestreference, sql, lblorderreference.Text);
if (ds.Tables == null || ds.Tables.Count <= 0)
{

4
Swift.web/Remit/Transaction/ApproveTxn/holdTxnList.aspx.cs

@ -173,8 +173,8 @@ namespace Swift.web.Remit.Transaction.ApproveTxn
if (allowApprove)
sb.Append("&nbsp;<input type = 'button' class='btn btn-primary m-t-25' onclick = \"ViewDetails(" + dr["id"].ToString() + ");\" value = 'Approve' id = 'btn_" + dr["id"].ToString() + "' />");
//if (allowReject)
// sb.Append("&nbsp;<input type = 'button' class='btn btn-primary m-t-25' onclick = \"Reject(" + dr["id"].ToString() + ");\" value = 'Reject' id = 'btn_r_" + dr["id"].ToString() + "' />");
if (allowReject)
sb.Append("&nbsp;<input type = 'button' class='btn btn-primary m-t-25' onclick = \"Reject(" + dr["id"].ToString() + ");\" value = 'Reject' id = 'btn_r_" + dr["id"].ToString() + "' />");
sb.Append("</td>");
}

2
Swift.web/Remit/Transaction/ApproveTxn/holdTxnListMobile.aspx.cs

@ -179,7 +179,7 @@ namespace Swift.web.Remit.Transaction.ApproveTxn
sb.Append("&nbsp;<input type='button' class='btn btn-primary m-t-25' onclick=\"window.location.href='Manage.aspx?id=" + dr["id"].ToString() + "&showDocPanel=N';\" value='Approve' id='btn_" + dr["id"].ToString() + "' showDocPanel='N' />");
//if (allowReject)
// sb.Append("&nbsp;<input type = 'button' class='btn btn-primary m-t-25' onclick = \"Reject(" + dr["id"].ToString() + ");\" value = 'Reject' id = 'btn_r_" + dr["id"].ToString() + "' />");
sb.Append("&nbsp;<input type = 'button' class='btn btn-primary m-t-25' onclick = \"Reject(" + dr["id"].ToString() + ");\" value = 'Reject' id = 'btn_r_" + dr["id"].ToString() + "' />");
sb.Append("</td>");
}

4
Swift.web/Remit/Transaction/Reports/DailySendingReportAgent/DailySendingReportAgent.aspx

@ -19,8 +19,8 @@
<link href="/ui/css/style.css" rel="stylesheet" />
<script src="/js/functions.js" type="text/javascript"></script>
<%-- <script src="/js/swift_calendar.js"></script>--%>
<script src="../../../../js/swift_calendar_New.js"></script>
<script src="/js/swift_calendar.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.mask/1.14.15/jquery.mask.min.js" type="text/javascript"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function () {

5
Swift.web/Remit/Transaction/VerifyMobileTransaction/VerifyMobileTransaction.aspx

@ -250,7 +250,7 @@
// // alert("Do you want to verify bank deposit?");
// //}
//}
dataToSend = { MethodName: 'Verify', tranId: id, DepositType: depositType, controlNo =controlNo };
dataToSend = { MethodName: 'Verify', tranId: id, DepositType: depositType, controlNo: controlNo };
if (confirm('Do you want to verify the transaction?')) {
// if (confirm) {
$.post("", dataToSend, function (response) {
@ -429,7 +429,8 @@
<div class="modal-content">
<div class="modal-header" id="modelUserForSave1">
<center>
<h2 class="modal-title">Customer Deposit Mapping<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button></h2>
<h2 class="modal-title">Customer Deposit Mapping
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button></h2>
</center>
</div>
<div style="margin: 10px" role="tabpanel">

2
Swift.web/Remit/Transaction/VerifyMobileTransaction/VerifyMobileTransaction.aspx.cs

@ -190,7 +190,7 @@ namespace Swift.web.Remit.Transaction.VerifyMobileTransaction
sb.Append("<td style=\"font-weight: bold; font-style: italic; text-align: right;\">");
sb.Append(GetStatic.FormatData(dr["amt"].ToString(), "M"));
sb.Append("<td>" + dr["depositType"].ToString() + "</td>");
sb.Append("<td>" + dr["CollMode"].ToString() + "</td>");
sb.Append("<td>" + GetStatic.FormatData(dr["txnDate"].ToString(), "D") + "</td>");
sb.Append("<td>" + dr["depositType"].ToString() + "</td>");
//sb.Append("<td>" + dr["mappedDetail"].ToString() + "</td>");

10
Swift.web/SwiftSystem/UserManagement/AgentUserSetup/List.aspx.cs

@ -229,7 +229,7 @@ namespace Swift.web.SwiftSystem.UserManagement.AgentUserSetup
_model = _auth.GenerateCodeAndImageURL(userName, userUniqueKeyEncrypted);
string msgBody = GetEmailMsgBody(dr, _model.BarCodeImageUrl, _model.ManualEntryKey);
string msgSubject = "QR Code to access JME Remit System";
string msgSubject = "QR Code to access IME London System";
string mailSend = GetStatic.SendEmail(msgSubject, msgBody, dr["email"].ToString());
if (mailSend == "Mail Send")
@ -246,7 +246,7 @@ namespace Swift.web.SwiftSystem.UserManagement.AgentUserSetup
{
var mailBody = "Dear Mr./Ms./Mrs. " + dr["NAME"].ToString() + ",";
mailBody +=
"<br><br>Your QR code for the JME Remit System is:";
"<br><br>Your QR code for the IME LONDON Remit System is:";
mailBody +=
"<br><br>Please download Google Authenticator from " +
"<a href=\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\">Google Play Store</a> " +
@ -269,13 +269,13 @@ namespace Swift.web.SwiftSystem.UserManagement.AgentUserSetup
mailBody +=
"<br><br><br>Regards,";
mailBody +=
"<br>JME Online Team";
"<br>IME London Team";
mailBody +=
"<br>Head Office";
mailBody +=
"<br>Post Code: 169-0073 Omori Building 4F(AB), Hyakunincho 1-10-7, Shinjuku-ku, Tokyo, Japan ";
"<br>Pentax House, South Hill Avenue, South Harrow, London, HA2 0DU, Company Registration No: 06432399. ";
mailBody +=
"<br>Phone number 08034104278 ";
"<br>Phone number 02088660307 ";
return mailBody;
}
}

10
Swift.web/SwiftSystem/UserManagement/ApplicationUserSetup/List.aspx.cs

@ -207,7 +207,7 @@ namespace Swift.web.SwiftSystem.UserManagement.ApplicationUserSetup
_model = _auth.GenerateCodeAndImageURL(userName, userUniqueKeyEncrypted);
string msgBody = GetEmailMsgBody(dr, _model.BarCodeImageUrl, _model.ManualEntryKey);
string msgSubject = "QR Code to access JME Remit System";
string msgSubject = "QR Code to access IME London System";
string mailSend = GetStatic.SendEmail(msgSubject, msgBody, dr["email"].ToString());
if (mailSend == "Mail Send")
@ -224,7 +224,7 @@ namespace Swift.web.SwiftSystem.UserManagement.ApplicationUserSetup
{
var mailBody = "Dear Mr./Ms./Mrs. " + dr["NAME"].ToString() + ",";
mailBody +=
"<br><br>Your QR code for the JME Remit System is:";
"<br><br>Your QR code for the IME LONDON Remit System is:";
mailBody +=
"<br><br>Please download Google Authenticator from " +
"<a href=\"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2\">Google Play Store</a> " +
@ -247,13 +247,13 @@ namespace Swift.web.SwiftSystem.UserManagement.ApplicationUserSetup
mailBody +=
"<br><br><br>Regards,";
mailBody +=
"<br>JME Online Team";
"<br>IME London Team";
mailBody +=
"<br>Head Office";
mailBody +=
"<br>Post Code: 169-0073 Omori Building 4F(AB), Hyakunincho 1-10-7, Shinjuku-ku, Tokyo, Japan ";
"<br>Pentax House, South Hill Avenue, South Harrow, London, HA2 0DU, Company Registration No: 06432399. ";
mailBody +=
"<br>Phone number 08034104278 ";
"<br>Phone number 02088660307 ";
return mailBody;
}
}
Loading…
Cancel
Save