Sharepoint Forum

 
Home » Forum » Sharepoint       Ask a questionRSS Feeds

Designer Workflow Email Format

  Asked By: Aiesha Amin         Date: Apr 04, 2007      Category: Sharepoint      Views: 1627
 

Is it possible to use HTML inside an email that SharePoint Designer
sends during workflow? I have tried to just put in html tags, but maybe
cdata is the answer?

Tagged:        

 

4 Answers Found

 
Answer #1       Answered By: Micheal Knight          Answered On: Apr 04, 2007       

Nevermind. Simple html  works inside  the email  message. I added the
<html> tag to it.


<html>
<table border=1>
<tr>
<td>
testing
</td>
</tr>
</table>
</html>



Which works.

 
Answer #2       Answered By: Cathy Cameron          Answered On: Apr 04, 2007       

Glad you figured it out. If you were to have done this
programmatically you could have used the Mail and SmtpClient classes
in System.Net. In the Mail object you MUST set the IsBodyHmtl
property to true. Below is exactly what this would look like.

 
Answer #3       Answered By: Kerri Steele          Answered On: Apr 04, 2007       

Not quite certain you'd be able to do that inside  of SPD WF though...

How bout them Buckeyes?

 
Answer #4       Answered By: Alisha Itagi          Answered On: Apr 04, 2007       

Ok, figured out that simple HTML works. Next problem: I have a column
in my list called "Requested By" that is a name column. In SharePoint
it displays the username, but in designer  it is displaying
domain\userlogin. I believe this is because sharepoint  is using a SID
and Designer doesn't resolve it to the username. Is there anyway I
can display the username (ex: "Mike Smith", instead of domain\MikeSm)
in Designer?

 
Didn't find what you were looking for? Find more on Designer Workflow Email Format Or get search suggestion and latest updates.


Your Answer
  • Answer should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].