Skip to content

Commit e2e73b2

Browse files
Update README.md
1 parent 2341016 commit e2e73b2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ MailerSend Java SDK
1111
- [Send an email](#send-an-email)
1212
- [Add CC, BCC recipients](#add-cc-bcc-recipients)
1313
- [Send a template-based email](#send-a-template-based-email)
14-
- [Advanced personalization](#advanced-personalization)
14+
- [Personalization](#personalization)
1515
- [Send email with attachment](#send-email-with-attachment)
1616
- [Schedule an email](#schedule-an-email)
1717
- [Send bulk emails](#send-bulk-emails)
@@ -255,7 +255,7 @@ public void sendEmail() {
255255
}
256256
```
257257

258-
### Advanced personalization
258+
### Personalization
259259

260260
```java
261261
import com.mailersend.sdk.emails.Email;
@@ -283,7 +283,7 @@ public void sendEmail() {
283283
// you can add personalization for each recipient separately
284284
email.addPersonalization(recipient, "var2 name", "personalization value");
285285

286-
// you can also add POJOs as advanced personalization provided they can be serialized to JSON via Gson and do not have any object properties
286+
// you can also add POJOs as personalization provided they can be serialized to JSON via Gson and do not have any object properties
287287
MyPojo obj = new MyPojo();
288288
obj.property1 = "property 1 value";
289289
obj.array1 = {1, 2, 3, 4};

0 commit comments

Comments
 (0)