হাই Devs,
The following is the piece of code to send Email from webpart.
সিস্টেম ব্যবহার;
System.Collections.Generic ব্যবহার;
using System.ComponentModel;
using System.Text;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Collections.ObjectModel;
using Microsoft.SharePoint.Utilities;
Microsoft.SharePoint ব্যবহার;
using System.Data;
using System.Collections;
namespace 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 = “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 = সত্য;
SPUtility.SendEmail(_web, মিথ্যা, মিথ্যা, txtTo.Text, “টেস্ট ইমেইল”, “টেক্সট বডি বার্তা”);
_web.Dispose();
_site.Dispose();
}
}
}
Webpart তৈরি করুন এবং SafeControl হিসাবে এটি রেজিস্টার
একটি উত্তর ত্যাগ