ಆರ್ಕೈವ್ಸ್

ಹೇಗೆ ಪಾಚಿಯಲ್ಲಿ WebPart ಗೆ ಇಮೇಲ್ ಕಳುಹಿಸಿ 2007

ಹಾಯ್ ಸಂಪನ್ಮೂಲಗಳು,
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 ಬಳಸಿ;
ನೇಮ್ sendmail
{
ಸಾರ್ವಜನಿಕ ವರ್ಗ sendmail : 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 e)
{
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

ಒಂದು ಉತ್ತರಿಸಿ ಬಿಡಿ

ನೀವು ಬಳಸಬಹುದು ಈ HTML ಟ್ಯಾಗ್ಗಳನ್ನು

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