I created a user macro that can be used to mark the status of a proposal. At my workplace, a proposal needs to be seen by several people during various stages of its development. I've added a username parameter to the macro so that the creator of the proposal can add the usernames of the people involved in the approval process.
However, the email notification functionality doesn't work. Is there anything that I've done in my code that would cause it to stop working? Is there anything I can do to make it work? The lack of notification would render the entire macro moot.
Here is my code:
## @param Creator:title=creators|type=username|required=true|multiple=true ## @param Lead:title=leads|type=username|required=false|multiple=true ## @param Reviewers:title=reviewers|type=username|required=false|multiple=true ## @param Drivers:title=drivers|type=username|required=false|multiple=true <ul> <li><strong>Creator:</strong><br> #foreach($user in $paramCreator.split("[,]+")) <form action="reviewer status"> <input type="checkbox"><ac:link><ri:user ri:username="$user" /></ac:link><br> </form> #end <li><strong>Owners:</strong><br> #if( $paramLead ) #foreach($user in $paramLead.split("[,]+")) <form action="reviewer status"> <input type="checkbox"><ac:link><ri:user ri:username="$user" /></ac:link><br> </form> #end #end <li><strong>Reviewers:</strong><br> #if( $paramReviewers ) #foreach($user in $paramReviewers.split("[,]+")) <form action="reviewer status"> <input type="checkbox"><ac:link><ri:user ri:username="$user" /></ac:link><br> </form> #end #end <li><strong>Drivers:</strong><br> #if( $paramDrivers ) #foreach($user in $paramDrivers.split("[,]+")) <form action="reviewer status"> <input type="checkbox"><ac:link><ri:user ri:username="$user" /></ac:link><br> </form> #end #end </li> </ul>
Thanks for your help. I'm new to Velocity.
Since you're not creating static user links that can be index by the indexer I don't think there is a way to get it to email.
Thanks Davin. I was afraid of that. Can you suggest any alternate way of getting this set up in macro form? I feel like I've just hit a brick wall.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Unfortunately, I don't have any great ideas.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.