2
我需要幫助在我的電子郵件輸出中添加已註冊的符號,因此當客戶收到電子郵件時,他們在主題行中的第一個單詞「FSFS」旁邊看到註冊的symobil,我嘗試使用usinf & REG但它不工作。如何在電子郵件主題行中添加已註冊的符號
String fullName = profile.getAddress().getFirstName() + " " + profile.getAddress().getLastName();
String html = b.toString()
.replace("[insertName]", fullName)
.replace("[trackingnumber]", claim.getClPicNbr().toString())
.replace("[MM/DD/YY]", dateNow)
.replace("[CLAIMID]", claim.getClId().toString());
email.postMail(recipients, "[email protected]",
"FSFS® Insurance Claim Received",** I need the registered symbol here
html);