Link to home
Start Free TrialLog in
Avatar of Mark Galvin
Mark GalvinFlag for United Kingdom of Great Britain and Northern Ireland

asked on

SharePoint Form & Submit Options

Hi

I'm using SharePoint Online as part of Microsoft's Office 365 (Plan E3) system.

We are integrating an InfoPath form so that users can fill out for resource requests. I have the form working perfectly. I have setup a "Submit" button on the form which sends the request to a shared mailbox that can then be accessed by the relevant resource creation team.

What I would like to do is CC in the the person that has submitted the request. Using InfoPath I have added the expression :
User generated imageand
User generated image
When I click the submit button on the form, the email comes through:
User generated imageBut as you can see the address that has been entered into the CC field is in a strange (none SMTP) format and the user that submits the form doesn't get an email.

Any ideas folks?
Thanks
Mark
ASKER CERTIFIED SOLUTION
Avatar of CloudedTurtle
CloudedTurtle
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Clay Fox
Yah, you may want to use the user lookup web service to get the actual address or if everyone has the same domain do a  concat(substring-before(user.name, "@"),"@","domain.co.uk) and just build it yourself.
I missed the extra garbage at the front but just use substrings to eliminate everything before the second bracket.
Avatar of Mark Galvin

ASKER

Awesome fix. Thanks CloudedTurtle!!!!