Giới hạn SharePoint document management
Để đảm bảo hiệu suất các bạn không nên upload lên quá giới hạn của sharepoint
Lập Trình C#, PHP, C++, Java, Python, Javascript, UML
Để đảm bảo hiệu suất các bạn không nên upload lên quá giới hạn của sharepoint
Các bạn đọc ra một SPItem từ SPLítItemCollection Sau đó lấy một item ra và lấy các attachments trong SPItem đó rồi lấy file các file content trong list attachment …
Read More “Get file attachments trong SPItem và đưa vào send mail trong cententID”
Trong đoạn code bên dưới bạn có thể add nhiều hình vào và trong content các bạn đưa ID vào là được
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
MailMessage Mail = new MailMessage(); Mail.From = new MailAddress("moss@xxx.com.vn"); Mail.To.Add("cmtuan@xxx.com.vn"); Mail.Subject = "This is Image Test."; Mail.Body = "This is the body of the email"; LinkedResource LinkedImage = new LinkedResource(@"DataFiles\Birthday\logo1.jpg"); LinkedImage.ContentId = "MyPic"; //Added the patch for Thunderbird as suggested by Jorge LinkedImage.ContentType = new ContentType(MediaTypeNames.Image.Jpeg); AlternateView htmlView = AlternateView.CreateAlternateViewFromString( "You should see image next to this line. <img src=cid:MyPic>", null, "text/html"); htmlView.LinkedResources.Add(LinkedImage); Mail.AlternateViews.Add(htmlView); SmtpClient smtp = new SmtpClient("webmail.xxx.com.vn", 25); try { smtp.Send(Mail); } catch (SmtpException ex) { //Logger.LogException(ex); } |
Các bạn nhớ đổi chổ của tên …
Khi bạn gặp lỗi Add Solution
1 2 3 |
Error occurred in deployment step 'Add Solution': A feature with ready been installed in this farm. Use the force attribute to explicitly re-install the feature. |
Các bạn hãy chỉnh lại thuôc tính này Hoặc bạn có thê chỉnh hoàn toàn trong Các bạn deploy lại là ok