Hi Mark,
An update has been released in v3.6.14 that will allow you to change the subject and content in emails created by Dynamic Time.
Define the following functions in your theme’s functions.php file. Edit the return statement as you wish. If these functions are not found, the default subject and content will be used.
function dyt_custom_mail_subject($user_name) {
return $user_name." - Pay Period Submission";
}
function dyt_custom_mail_content($recipient_name,$user_name,$url) {
return "Dear $recipient_name<br><br> Please find a new pay period submission for $user_name at <a href='$url' target='_blank'>$url</a><br><br>- Dynamic Time.";
}