CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets matching tags of Outlook
FUNCTION ShowEmail( lcRecipient,lcSubject,lcBody )
RETURN GoUrl("mailto:" + lcRecipient + ;
             "&Subject=" + STRTRAN(UrlEncode(lcSubject),"+"," ") +;
             "&Body=" + STRTRAN(UrlEncode(lcBody),"+"," "))
 
****************************************************
FUNCTION GoUrl
******************
***    Author: Rick Strahl
***            (c) West Wind Technologies, 1996
by Rick Strahl   September 23, 2011 @ 12:38am
Tags: Email, Outlook
105 Views
no comments
 
C#
public string GetOutlookInvite(DateTime StartDate, DateTime EndDate, String Location, String Subject, String Description)
        {
            StringBuilder str = new StringBuilder();        
 
            str.Append("BEGIN:VCALENDAR");
            str.Append(System.Environment.NewLine);
            str.Append("PRODID:-//PBA//myPBA Forms//EN");
            str.Append(System.Environment.NewLine);
            str.Append("BEGIN:VEVENT");
            str.Append(System.Environment.NewLine);
by Mitchell Adams   October 15, 2009 @ 8:31am
93 Views
no comments
 
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate