Ako poslať e-mail od webpart v MOSS 2007

Ahoj Devs,
Nasledujúce kus kódu odoslať e-mail od webpart.

using System;
pomocou System.Collections.Generic;
pomocou System.ComponentModel;
pomocou System.Text;
pomocou System.Web;
pomocou System.Web.UI;
pomocou System.Web.UI.WebControls;
pomocou System.Collections.ObjectModel;
pomocou Microsoft.SharePoint.Utilities;
pomocou Microsoft.SharePoint;
pomocou System.dat;
pomocou System.Collections;
menného priestoru SendMail
{
public class SendMail : Microsoft.SharePoint.WebPartPages.WebPart
{
súkromné textbox txtTo;
Tlačidlo súkromné btnSendMail;
chránené CreateChildControls prepísať neplatné()
{
txtTo = new textbox();
this.Controls.Add(txtTo);
btnSendMail = new Tlačidlo();
btnSendMail.Text = “Odoslať e-mail”;
btnSendMail.Click = new EventHandler(SendMail_Click);
this.Controls.Add(btnSendMail);
}
neplatné 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, falošný, falošný, txtTo.Text, “Test e-mailom”, “Text správy Telo”);
_web.Dispose();
_site.Dispose();
}
}
}

Vytvorte webpart a zaregistrovať ako SafeControl

Required

Môžete použiť tieto HTML tagy

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