# HG changeset patch # User geert-vandeweyer # Date 1392281443 18000 # Node ID aff68aba2f62ae59ff176e4ef8e425e72aedb830 # Parent 0b1cdae7ad5bff24da2d7feea2a5527f91416a60 Replace XML with correct one. Apologies for the mistake diff -r 0b1cdae7ad5b -r aff68aba2f62 sendmail.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sendmail.xml Thu Feb 13 03:50:43 2014 -0500 @@ -0,0 +1,69 @@ + + + + sendmail.pl -u '$__user_email__' + + ## subject + #if $subjectfromselect.subjectsource == "typed" : + #if $subjectfromselect.typedsubject != "": + -s "${subjectfromselect.typedsubject}" + #end if + #elif $subjectfromselect.subjectsource == "other": + -s "Galaxy Job Finished on ${subjectfromselect.subjectfile.display_name}" + #elif $subjectfromselect.subjectsource == "input1": + -s "Galaxy Job Finished on ${input1.display_name}" + #end if + + -d "${input1.display_name}@@@ + #for $q in $datafiles + ${q.input2.display_name}@@@ + #end for + " + + -o $output + + + + + + + + + + + + + + + + + + + + + + + + + + +**What it does** + +This tool sends an email to notify you when a certain analysis has finished. It takes any datfile(s) as input and sends the mail as soon as they are ready. Use it to notify you of workflow completion. In workflows, this can be set in the workflow editor, but this tools can be handy to get notifications for manually started jobs. + +**Input** + +Datasets: +Any dataset, or multiple datasets. They will be listed in the email. + +A subject: +You can specify the subject of the mail yourself, or use a datafile. In that case, the subject will be of the form "Galaxy Job Finished on Datafile_Name". If none is specified, you will just recieve a mail with "Galaxy workflow finished" as subject. + +**Output** + +None. + + + +