So senden Sie eine Email von WebPart in MOSS 2007

Hallo Devs,
Im Folgenden ist der Teil des Codes, um E-Mail von WebPart senden.

using System;
Hilfe System.Collections.Generic;
Hilfe System.ComponentModel;
Hilfe System.Text;
Hilfe System.Web;
Hilfe System.Web.UI;
Hilfe System.Web.UI.WebControls;
Hilfe System.Collections.ObjectModel;
Hilfe Microsoft.SharePoint.Utilities;
Hilfe Microsoft.SharePoint;
using System.Data;
Hilfe System.Collections;
Namespaces SendMail
{
public class SendMail : Microsoft.SharePoint.WebPartPages.WebPart
{
Private TextBox txtTo;
Private Button btnSendMail;
protected override void CreateChildControls()
{
txtTo = new TextBox();
this.Controls.Add(txtTo);
btnSendMail = new Button();
btnSendMail.Text = “E-Mail senden”;
btnSendMail.Click = new EventHandler(SendMail_Click);
this.Controls.Add(btnSendMail);
}
Leere SendMail_Click(object sender, EventArgs e)
{
SPSite _site = new SPSite(HttpContext.Current.Request.Url.ToString());
SPWeb _Web = _site.OpenWeb();
_web.AllowUnsafeUpdates = true;
SPUtility.SendEmail(_Web, false, false, txtTo.Text, “Test E-Mail”, “Text Body Nachricht”);
_web.Dispose();
_site.Dispose();
}
}
}

Erstellen Sie das WebPart und registrieren Sie es als SafeControl

Lassen Sie eine Antwort

Sie können Diese HTML-Tags

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>