Nasıl MOSS içinde webpart bir e-posta gönder 2007

Merhaba Devs,
Aşağıdaki webpart gelen e-mail göndermek için kod parçası.

Sistemi kullanılarak;
System.Collections.Generic kullanarak;
System.ComponentModel kullanarak;
System.Text kullanarak;
System.web kullanarak;
System.Web.UI kullanarak;
System.Web.UI.WebControls kullanarak;
System.Collections.ObjectModel kullanarak;
kullanarak Microsoft.SharePoint.Utilities;
Microsoft.SharePoint kullanarak;
System.Data kullanarak;
System.Collections kullanarak;
ad SendMail
{
public class SendMail : Microsoft.SharePoint.WebPartPages.WebPart
{
Özel TextBox txtTo;
Özel Düğme btnSendMail;
protected override void CreateChildControls()
{
txtTo = new TextBox();
this.Controls.Add(txtTo);
btnSendMail = new Button();
btnSendMail.Text = “E-posta Gönder”;
btnSendMail.Click = new EventHandler(SendMail_Click);
this.Controls.Add(btnSendMail);
}
SendMail_Click geçersiz(object sender, EventArgs e)
{
SPSite _site = new SPSite(HttpContext.Current.Request.Url.ToString());
SPWeb _Web = _site.OpenWeb();
_web.AllowUnsafeUpdates = true;
SPUtility.SendEmail(_Web, yanlış, yanlış, txtTo.Text, “Test Email”, “Metin Vücut Mesaj”);
_web.Dispose();
_site.Dispose();
}
}
}

webpart oluşturun ve SafeControl olarak kayıt

Bir Yanıt bırak

Kullanabileceğiniz Bu HTML etiketleri

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