1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
|
//------------------------------------------------------------------------------
// <copyright file="MailDefinition.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web.UI.WebControls {
using System.Net.Mail;
using System.Net.Mime;
using System.Collections;
using System.ComponentModel;
using System.IO;
using System.Drawing.Design;
using System.Text.RegularExpressions;
using System.Web;
using System.Web.Util;
using System.Text;
using System.Web.Configuration;
using System.Configuration;
/// <devdoc>
/// Defines an email message. Smaller object model than System.Net.Mail.MailMessage. Creates a MailMessage
/// from a string or a file containing the message body. Can perform textual substitutions in the message body
/// when given a dictionary mapping strings to their replacements.
/// </devdoc>
[
Bindable(false),
TypeConverterAttribute(typeof(EmptyStringExpandableObjectConverter)),
ParseChildren(true, "")
]
public sealed class MailDefinition : IStateManager {
private bool _isTrackingViewState;
private StateBag _viewState;
private EmbeddedMailObjectsCollection _embeddedObjects;
private string _bodyFileName;
/// <devdoc>
/// The file that contains the body of the e-mail message.
/// </devdoc>
[
WebCategory("Behavior"),
DefaultValue(""),
WebSysDescription(SR.MailDefinition_BodyFileName),
Editor("System.Web.UI.Design.WebControls.MailDefinitionBodyFileNameEditor, " + AssemblyRef.SystemDesign, typeof(UITypeEditor)),
UrlProperty("*.*"),
NotifyParentProperty(true)
]
public string BodyFileName {
get {
return (_bodyFileName == null) ? String.Empty : _bodyFileName;
}
set {
_bodyFileName = value;
}
}
/// <devdoc>
/// A semicolon-delimited list of e-mail addresses that receive a carbon copy (CC) of the e-mail message.
/// </devdoc>
[
WebCategory("Behavior"),
DefaultValue(""),
WebSysDescription(SR.MailDefinition_CC),
NotifyParentProperty(true)
]
public string CC {
get {
object obj = ViewState["CC"];
return (obj == null) ? String.Empty : (string)obj;
}
set {
ViewState["CC"] = value;
}
}
// <include file='doc\MailDefinition.uex' path='docs/doc[@for="MailDefinition.From"]/*' />
/// <devdoc>
/// The sender's e-mail address.
/// </devdoc>
[
WebCategory("Behavior"),
DefaultValue(""),
WebSysDescription(SR.MailDefinition_From),
NotifyParentProperty(true)
]
public string From {
get {
object obj = ViewState["From"];
return (obj == null) ? String.Empty : (string)obj;
}
set {
ViewState["From"] = value;
}
}
/// <devdoc>
/// Embedded mail objects
/// </devdoc>
[
DefaultValue(null),
NotifyParentProperty(true),
PersistenceMode(PersistenceMode.InnerProperty),
WebCategory("Behavior"),
WebSysDescription(SR.MailDefinition_EmbeddedObjects),
]
public EmbeddedMailObjectsCollection EmbeddedObjects {
get {
if (_embeddedObjects == null) {
_embeddedObjects = new EmbeddedMailObjectsCollection();
}
return _embeddedObjects;
}
}
[
WebCategory("Behavior"),
DefaultValue(false),
WebSysDescription(SR.MailDefinition_IsBodyHtml),
NotifyParentProperty(true)
]
public bool IsBodyHtml {
get {
object obj = ViewState["IsBodyHtml"];
return (obj == null) ? false : (bool)obj;
}
set {
ViewState["IsBodyHtml"] = value;
}
}
[
WebCategory("Behavior"),
DefaultValue(MailPriority.Normal),
WebSysDescription(SR.MailDefinition_Priority),
NotifyParentProperty(true)
]
public MailPriority Priority {
get {
object obj = ViewState["Priority"];
return (obj == null) ? MailPriority.Normal : (MailPriority) obj;
}
set {
if (value < MailPriority.Normal || value > MailPriority.High) {
throw new ArgumentOutOfRangeException("value");
}
ViewState["Priority"] = value;
}
}
/// <devdoc>
/// The subject line of the e-mail message.
/// </devdoc>
[
WebCategory("Behavior"),
DefaultValue(""),
WebSysDescription(SR.MailDefinition_Subject),
NotifyParentProperty(true)
]
public string Subject {
get {
object obj = ViewState["Subject"];
return (obj == null) ? String.Empty : (string)obj;
}
set {
ViewState["Subject"] = value;
}
}
//
internal string SubjectInternal {
get {
return (string)ViewState["Subject"];
}
}
/// <devdoc>
/// Manages the viewstate for this class, since we don't extend Control.
/// </devdoc>
[
Browsable(false),
DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)
]
private StateBag ViewState {
get {
if (_viewState == null) {
_viewState = new StateBag(false);
if (_isTrackingViewState) {
((IStateManager)_viewState).TrackViewState();
}
}
return _viewState;
}
}
/// <devdoc>
/// Creates a MailMessage using the BodyFileName property.
/// </devdoc>
public MailMessage CreateMailMessage(string recipients, IDictionary replacements, Control owner) {
if (owner == null) {
throw new ArgumentNullException("owner");
}
string body = String.Empty;
string bodyFileName = BodyFileName;
if (!String.IsNullOrEmpty(bodyFileName)) {
string path = bodyFileName;
if (!UrlPath.IsAbsolutePhysicalPath(path)) {
// Relative so we need to add the template source directory to the path
path = UrlPath.Combine(owner.AppRelativeTemplateSourceDirectory, path);
}
TextReader reader = new StreamReader(owner.OpenFile(path));
try {
body = reader.ReadToEnd();
}
finally {
reader.Close();
}
}
return CreateMailMessage(recipients, replacements, body, owner);
}
/// <devdoc>
/// Creates a MailMessage using the body parameter.
/// </devdoc>
public MailMessage CreateMailMessage(string recipients, IDictionary replacements, string body, Control owner) {
if (owner == null) {
throw new ArgumentNullException("owner");
}
string from = From;
if (String.IsNullOrEmpty(from)) {
System.Net.Configuration.SmtpSection smtpSection = RuntimeConfig.GetConfig().Smtp;
if (smtpSection == null || smtpSection.Network == null || String.IsNullOrEmpty(smtpSection.From)) {
throw new HttpException(SR.GetString(SR.MailDefinition_NoFromAddressSpecified));
}
else {
from = smtpSection.From;
}
}
MailMessage message = null;
try {
message = new MailMessage(from, recipients);
if (!String.IsNullOrEmpty(CC)) {
message.CC.Add(CC);
}
if (!String.IsNullOrEmpty(Subject)) {
message.Subject = Subject;
}
message.Priority = Priority;
if (replacements != null && !String.IsNullOrEmpty(body)) {
foreach (object key in replacements.Keys) {
string fromString = key as string;
string toString = replacements[key] as string;
if ((fromString == null) || (toString == null)) {
throw new ArgumentException(SR.GetString(SR.MailDefinition_InvalidReplacements));
}
// DevDiv 151177
// According to http://msdn2.microsoft.com/en-us/library/ewy2t5e0.aspx, some special
// constructs (starting with "$") are recognized in the replacement patterns. References of
// these constructs will be replaced with predefined strings in the final output. To use the
// character "$" as is in the replacement patterns, we need to replace all references of single "$"
// with "$$", because "$$" in replacement patterns are replaced with a single "$" in the
// final output.
toString = toString.Replace("$", "$$");
body = Regex.Replace(body, fromString, toString, RegexOptions.IgnoreCase);
}
}
// If there are any embedded objects, we need to construct an alternate view with text/html
// And add all of the embedded objects as linked resouces
if (EmbeddedObjects.Count > 0) {
string viewContentType = (IsBodyHtml ? MediaTypeNames.Text.Html : MediaTypeNames.Text.Plain);
AlternateView view = AlternateView.CreateAlternateViewFromString(body, null, viewContentType);
foreach (EmbeddedMailObject part in EmbeddedObjects) {
string path = part.Path;
if (String.IsNullOrEmpty(path)) {
throw ExceptionUtil.PropertyNullOrEmpty("EmbeddedMailObject.Path");
}
if (!UrlPath.IsAbsolutePhysicalPath(path)) {
VirtualPath virtualPath = VirtualPath.Combine(owner.TemplateControlVirtualDirectory,
VirtualPath.Create(path));
path = virtualPath.AppRelativeVirtualPathString;
}
// The FileStream will be closed by MailMessage.Dispose()
LinkedResource lr = null;
try {
Stream stream = null;
try {
stream = owner.OpenFile(path);
lr = new LinkedResource(stream);
}
catch {
if (stream != null) {
((IDisposable)stream).Dispose();
}
throw;
}
lr.ContentId = part.Name;
lr.ContentType.Name = UrlPath.GetFileName(path);
view.LinkedResources.Add(lr);
}
catch {
if (lr != null) {
lr.Dispose();
}
throw;
}
}
message.AlternateViews.Add(view);
}
else if (!String.IsNullOrEmpty(body)) {
message.Body = body;
}
message.IsBodyHtml = IsBodyHtml;
return message;
}
catch {
if (message != null) {
message.Dispose();
}
throw;
}
}
#region IStateManager implementation
/// <internalonly/>
bool IStateManager.IsTrackingViewState {
get {
return _isTrackingViewState;
}
}
/// <internalonly/>
void IStateManager.LoadViewState(object savedState) {
if (savedState != null) {
((IStateManager)ViewState).LoadViewState(savedState);
}
}
/// <internalonly/>
object IStateManager.SaveViewState() {
if (_viewState != null) {
return ((IStateManager)_viewState).SaveViewState();
}
return null;
}
/// <internalonly/>
void IStateManager.TrackViewState() {
_isTrackingViewState = true;
if (_viewState != null) {
((IStateManager)_viewState).TrackViewState();
}
}
#endregion
}
}
|