diff --git a/readme.md b/readme.md
index b05a0893..7e50b422 100644
--- a/readme.md
+++ b/readme.md
@@ -36,6 +36,7 @@ Send your first email:
await resend.emails.send({
from: 'you@example.com',
to: 'user@gmail.com',
+ replyTo: 'you@example.com',
subject: 'hello world',
text: 'it works!',
});
@@ -49,6 +50,7 @@ Send an email custom HTML content:
await resend.emails.send({
from: 'you@example.com',
to: 'user@gmail.com',
+ replyTo: 'you@example.com',
subject: 'hello world',
html: 'it works!',
});
@@ -79,6 +81,7 @@ import EmailTemplate from '../components/EmailTemplate';
await resend.emails.send({
from: 'you@example.com',
to: 'user@gmail.com',
+ replyTo: 'you@example.com',
subject: 'hello world',
react: ,
});