Sunday, April 22, 2012

Sending e-mail with attachments from SharePoint

Sending email is a key function of enterprises solutions. Inside SharePoint collaboration environment you always need to send email with the required attachments. This can be used in some cases like once your document is approved / updated then through workflow we can send it to all the associated users.

One of the ways to send an e-mail from SharePoint as developer is to make use of the “SPUtility.SendEmail” classes. But unfortunately I did not find any possibility to include an attachment with the help of these classes.

You can easily use the following specified methods to send email with attachment.

 

       I.            Method 1

Here we are going to use “System.Net.Mail” classes to send a message. Instead of hard coding the SMTP information into the code, we are going to use the SMTP settings that are configured with the SharePoint Central Administration. These settings are found in the “SPAdministrationWebApplication” class.
Below is a brief example on how you can send the mail with attachment from code. If you prefer to use the user’s e-mail address instead of the configured SMTP user you can retrieve it with SPControl.GetContextWeb(Context).CurrentUser.Email.

//Get the Sharepoint SMTP information from the //SPAdministrationWebApplication
            string strSmtpServer = SPAdministrationWebApplication.Local.OutboundMailServiceInstance.Server.Address;
            string strSmtpFrom = SPAdministrationWebApplication.Local.OutboundMailSenderAddress;

            //Create the mail message and supply it with from and to info
            MailMessage objMailMessage = new MailMessage(strSmtpFrom,"user@gmail.com");

            //Set the subject and body of the message
            objMailMessage.Subject = "Subject: Testing Sending mail with attachment";
            objMailMessage.Body = "This is Test Mail with a attachment";
            //Download the content of the file with a WebClient
            WebClient webClient = new WebClient();

            //Supply the WebClient with the network credentials of our user
            webClient.Credentials = CredentialCache.DefaultNetworkCredentials;

     //Download the byte array of the file
            byte[] data = webClient.DownloadData(insert_ attachment_url);

           //Dump the byte array in a memory stream because
           //we can write it to our attachment
            MemoryStream memoryStreamOfFile = new MemoryStream(data);
          
    //Add the attachment
           objMailMessage.Attachments.Add(new System.Net.Mail.Attachment(memoryStreamOfFile, insert_Filenamefor_attachment, insert_content_type));

            //Create the SMTP client object and send the message
            SmtpClient objSmtpClient = new SmtpClient(strSmtpServer);
            objSmtpClient.Send(objMailMessage);


     II.            Method 2

    MailMessage message = new MailMessage();
      //Get the Sharepoint SMTP information from the //SPAdministrationWebApplication 
message.From = new MailAddress(SPAdministrationWebApplication.Local.OutboundMailSenderAddress.ToString());
  
    message.To.Add(new MailAddress("user@gmail.com"));
    message.IsBodyHtml = true;

   //Set the subject and body of the message
    message.Body = "Hi there, check out the attachment";
    message.Subject = "Sent Attachment";

      using (SPWeb web = SPContext.Current.Web)
      {
//Get the Document Library from where you want to sed the attachment
          SPList splDataSpringsLibrary = web.Lists["MyDocuments"];

            //Get the Url of the file to be sent as an attachment
          string strUrl = "http://ocs-wks-029:2323/MyDocuments/Configuring Database Mial  SQL server 2008.doc";
          //Get the file to be sent as an attachment
SPFile file = splDataSpringsLibrary.ParentWeb.GetFile(strUrl);

    //Add the attachment
           message.Attachments.Add(new Attachment(file.OpenBinaryStream(), file.Name));

            //Create the SMTP client object and send the message
           SmtpClient smtpClient = new SmtpClient(SPAdministrationWebApplication.Local.OutboundMailServiceInstance.Server.Address);.
           smtpClient.Send(message);
      }

 

 

 

2 comments:

  1. Method #3: http://www.harepoint.com/Products/HarePointWorkflowExtensions/E-Mail-SharePoint-Workflow-Action.aspx

    WBR, Aleksandr

    ReplyDelete
  2. Method #4 try https://activitydeploy.com/ for 20 $ you recive what you need

    ReplyDelete