diff --git a/app/src/main/java/fr/free/nrw/commons/review/ReviewController.java b/app/src/main/java/fr/free/nrw/commons/review/ReviewController.java
index e3d5b2256..336be3c6b 100644
--- a/app/src/main/java/fr/free/nrw/commons/review/ReviewController.java
+++ b/app/src/main/java/fr/free/nrw/commons/review/ReviewController.java
@@ -151,7 +151,7 @@ public class ReviewController {
                 .getInstance(context)
                 .getCommonsApplicationComponent()
                 .inject(this);
-        ViewUtil.showShortToast(context, context.getString(R.string.send_thank_toast, media.getDisplayTitle()));
+        ViewUtil.showShortToast(context, context.getString(R.string.send_thank_toast, media.getAuthor(), media.getDisplayTitle()));
 
         if (firstRevision == null) {
             return;
@@ -185,7 +185,7 @@ public class ReviewController {
         final String title;
         if (result) {
             title = context.getString(R.string.send_thank_success_title);
-            message = context.getString(R.string.send_thank_success_message, media.getDisplayTitle());
+            message = context.getString(R.string.send_thank_success_message, media.getAuthor(), media.getDisplayTitle());
         } else {
             title = context.getString(R.string.send_thank_failure_title);
             message = context.getString(R.string.send_thank_failure_message, media.getDisplayTitle());
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 0c6be3129..6d1f2eacc 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -475,11 +475,11 @@ Upload your first media by tapping on the add button.
   Requesting category check for %1$s
   Done
   Sending Thanks: Success
-  Successfully sent thanks to %1$s
+  Successfully sent thanks to %1$s for %2$s
   Failed to send thanks %1$s
   Sending Thanks: Failure
 
-  Sending Thanks for %1$s
+  Sending thanks to %1$s for %2$s
   Does this follow the rules of copyright?
   Is this correctly categorized?
   Is this in-scope?