Pergunta

I have a workflow connected to a list with a column named "Names Assigned" where multiple people can be selected (people picker).

My workflow is designed to send an email to "CurrentItem : Names Assigned" but it sends an email to ALL users instead of sending separate, private emails to users assigned.

How can I get the emails to send out to each user individually?

Thank you, Madeline

Foi útil?

Solução

You need add a step to make sure the assigned to value is not null before firing off the email.

You can find more details on this here. TechNet How to Send E-Mail to Specific Assigned To

Edit: So looking at SP 2010, it appears that this might be a known limitation. While there are workarounds, they are either 3rd party tools or require custom development of the workflow in order to loop through the list and send the email individually to the members of said list (Name Assigned). So unfortunately, you would need to build a script to look at the list, determine who is listed, do the mailto, then proceed to the next person. It is not something you can do straight OOTB. Alternatively, you could set the field to BCC as opposed to To, so that no one could see the other people receiving the same email from the OOTB solution.

Good luck!

Outras dicas

I think you can use BCC feature of SPD 2010 workflow. Using BCC, all the recipients in the BCC will receive separate email without notifying about who else has received other than BCC persons.

Reference: How to use BCC in SPD 2010 workflow

Licenciado em: CC-BY-SA com atribuição
Não afiliado a sharepoint.stackexchange
scroll top