質問

I would like to get the paramaters shown in the following picture. can this been done and how?

Thank you

P.S. I wonder if it's possible to send email using scom and Sharepoint email system.

screenshot

役に立ちましたか?

解決

You can use below code for that

using(SPSite site = new SPSite(siteUrl))
{
    string smtpHost = site.WebApplication.OutboundMailServiceInstance.Parent.Name
    string fromEmail = site.WebApplication.OutboundMailSenderAddress
}

Or

var admin = new Microsoft.SharePoint.Administration.SPGlobalAdmin()
var server = admin.OutboundSmtpServer
var replyToAddress = admin.MailReplyToAddress
var fromAddress = admin.MailFromAddress
ライセンス: CC-BY-SA帰属
所属していません sharepoint.stackexchange
scroll top