Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ Refer to the [`examples`](examples) folder for the source code of this and other

### API Reference

You can find the API reference [here](https://railsware.github.io/mailtrap-java/index.html).
You can find the API reference [here](https://mailtrap.github.io/mailtrap-java/index.html).

### General API

Expand Down Expand Up @@ -144,7 +144,7 @@ You can find the API reference [here](https://railsware.github.io/mailtrap-java/

## Contributing

Bug reports and pull requests are welcome on [GitHub](https://github.com/railsware/mailtrap-java). This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](CODE_OF_CONDUCT.md).
Bug reports and pull requests are welcome on [GitHub](https://github.com/mailtrap/mailtrap-java). This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](CODE_OF_CONDUCT.md).

## License

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ This client allows you to quickly and easily integrate your Java application wit

## License

Licensed under the <a href="https://github.com/railsware/mailtrap-java/blob/main/LICENSE.txt" target="_blank">MIT License</a>.
Licensed under the <a href="https://github.com/mailtrap/mailtrap-java/blob/main/LICENSE.txt" target="_blank">MIT License</a>.
2 changes: 1 addition & 1 deletion docs/usage-examples.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Detailed Usage Examples

Code examples covering all APIs can be found <a href="https://github.com/railsware/mailtrap-java/tree/main/examples/java/io/mailtrap/examples" target="_blank">here</a>.
Code examples covering all APIs can be found <a href="https://github.com/mailtrap/mailtrap-java/tree/main/examples/java/io/mailtrap/examples" target="_blank">here</a>.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
</developers>

<scm>
<url>https://github.com/railsware/mailtrap-java</url>
<connection>scm:git:git://github.com/railsware/mailtrap-java.git</connection>
<url>https://github.com/mailtrap/mailtrap-java</url>
<connection>scm:git:git://github.com/mailtrap/mailtrap-java.git</connection>
</scm>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ private HttpRequest.Builder prepareRequest(final String url, final RequestData r
.header("Accept", "application/json")
.header("Content-Type", "application/json; charset=UTF-8")
.header("Authorization", "Bearer " + token)
.header("User-Agent", "mailtrap-java (https://github.com/railsware/mailtrap-java)");
.header("User-Agent", "mailtrap-java (https://github.com/mailtrap/mailtrap-java)");

final Map<String, Object> headers = new HashMap<>(requestData.getHeaders());
for (Map.Entry<String, ?> entry : headers.entrySet()) {
Expand Down