హాయ్ Devs,
webpart నుండి ఇమెయిల్ పంపండి కోడ్ భాగాన్ని కింది.
వ్యవస్థ ఉపయోగించి;
System.Collections.Generic ఉపయోగించి;
System.ComponentModel ఉపయోగించి;
System.Text ఉపయోగించి;
System.Web ఉపయోగించి;
System.Web.UI ఉపయోగించి;
System.Web.UI.WebControls ఉపయోగించి;
System.Collections.ObjectModel ఉపయోగించి;
Microsoft.SharePoint.Utilities ఉపయోగించి;
Microsoft.SharePoint ఉపయోగించి;
System.Data ఉపయోగించి;
System.Collections ఉపయోగించి;
పేరుబరి సెండ్మెయిల్
{
ప్రజా తరగతి సెండ్మెయిల్ : Microsoft.SharePoint.WebPartPages.WebPart
{
ప్రైవేట్ పేటిక txtTo;
ప్రైవేట్ బటన్ btnSendMail;
protected override void CreateChildControls()
{
txtTo = new TextBox();
this.Controls.Add(txtTo);
btnSendMail = new Button();
btnSendMail.Text = “Send Email”;
btnSendMail.Click = new EventHandler(SendMail_Click);
this.Controls.Add(btnSendMail);
}
void SendMail_Click(object sender, EventArgs ఇ)
{
SPSite _site = new SPSite(HttpContext.Current.Request.Url.ToString());
SPWeb _web = _site.OpenWeb();
_web.AllowUnsafeUpdates = true;
SPUtility.SendEmail(_web, తప్పుడు, తప్పుడు, txtTo.Text, “Test Email”, “Text Body Message”);
_web.Dispose();
_site.Dispose();
}
}
}
Create the WebPart and register it as SafeControl
ఒక Reply వదిలి