diff --git a/sched/sched_send.cpp b/sched/sched_send.cpp
index 43dc91039c..d76c2d5a70 100644
--- a/sched/sched_send.cpp
+++ b/sched/sched_send.cpp
@@ -553,6 +553,14 @@ static int insert_wu_tags(WORKUNIT& wu, APP& app) {
wu.name,
app.name
);
+ if (!empty(wu.keywords)) {
+ char buf2[1024];
+ sprintf(buf2,
+ " %s\n",
+ wu.keywords
+ );
+ strcat(buf, buf2);
+ }
return insert_after(wu.xml_doc, "\n", buf);
}