Skip to content

Commit e8300e4

Browse files
authored
Wrong import statement in README.md
Wrong import in "Send Email" description. The import in line 141 was com.mailersend.sdk.Email; but it is described in all other examples as import com.mailersend.sdk.emails.Email; - this import works, but the other one cannot be resolved by the IDE
1 parent a221ecc commit e8300e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ Through the `MailerSendResponse` object you can get the ID of the sent message,
138138
### Send an email
139139

140140
```java
141-
import com.mailersend.sdk.Email;
141+
import com.mailersend.sdk.emails.Email;
142142
import com.mailersend.sdk.MailerSend;
143143
import com.mailersend.sdk.MailerSendResponse;
144144
import com.mailersend.sdk.exceptions.MailerSendException;

0 commit comments

Comments
 (0)