hadoop - Oozie email action, how to set a specific "from address" -


i want set parameter oozie.email.from.address 1 action.

i know oozie-site.xml exists sets parameter every action. in 1 of workflow.xml tried this

<action name="sendemail5530">    <email xmlns="uri:oozie:email-action:0.1">         <configuration>            <property>                 <name>oozie.email.from.address</name>                 <value>myfromadress@gmail.com</value>             </property>         </configuration>                 <to>${parammaillist}</to>         <subject> subject</subject>         <body>            body         </body>     </email>     <ok to="mailsent"/>     <error to="fail"/> </action>  

but not work. have better solution? (using oozie)


Comments

Popular posts from this blog

How to check data type in C++? -

javascript - Is getTimezoneOffset() stable during daylight saving transition? -

sql server - SQL Query returns one result, does not return 0 or NULL result -