Click here to Skip to main content
15,887,135 members
Articles / Web Development / ASP.NET

Send scheduled Reminder/Alerts by email in SharePoint

Rate me:
Please Sign up or sign in to vote.
4.87/5 (14 votes)
24 Mar 2009CPOL12 min read 590.7K   2.1K   67  
Learn how to create a SharePoint Job that queries lists and sends results via email.
using System;
using System.Collections.Generic;
using System.Text;

namespace Mullivan.SharePoint.Remote
{
    public class SPColumn 
    {
        private SPContentType _contentType;

        internal SPColumn(SPContentType contentType)
        {
            _contentType = contentType;
        }

        public string Id { get; set; }
        public string Name { get; set; }
        public string DisplayName { get; set; }
        public string Description { get; set; }
        public bool AllowFillIns { get; set; }
        public List<string> Choices { get; set; }
        public SPColumnType DataType { get; set; }
        public bool IsReadOnly { get; set; }
        public int DecimalPlaces { get; set; }
        public string DefaultValue { get; set; }
        public string DisplayFormat { get; set; }
        public bool IsRequired { get; set; }
        public double MaximumValue { get; set; }
        public int MaxLength { get; set; }
        public bool IsPercentage { get; set; }
        public double MinimumValue { get; set; }
        public int NumberOfLines { get; set; }
        public int OrderId { get; set; }
        public string RpcName { get; set; }
        public SPContentType ContentType { get { return _contentType; } }
        public SPLookupInfo LookupInfo { get; set; }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions