Change this: to this: "notify_user": emailid, ânotify_userâ:â$(emailid)â Youâd wind up with an identical ClassAd in the end, though, since condor_submit would just put the email string in there anyway upon expanding $(emailid). Michael V. Pelletier From: HTCondor-users <htcondor-users-bounces@xxxxxxxxxxx>
On Behalf Of gagan tiwari Hi Guys, I need condor to send email notifications to the job owner. I have captured the user's email id in a variable and passed that in the submit file but condor doesn't seem to be using it and sending e-mail do
owner@uid-domain which is default. I am using following python codes to achieve this :- def submit_jobs(): emailid = emailid.split() ( capturing user email as list ) job = htcondor.Submit({ I tried passing user email id both as str and as list but nothing worked. Please let me know what I am missing here. Thanks, Gagan |