當前位置: 首頁>>代碼示例>>C#>>正文


C# SendGridMessage.EnableSpamCheck方法代碼示例

本文整理匯總了C#中SendGrid.SendGridMessage.EnableSpamCheck方法的典型用法代碼示例。如果您正苦於以下問題:C# SendGridMessage.EnableSpamCheck方法的具體用法?C# SendGridMessage.EnableSpamCheck怎麽用?C# SendGridMessage.EnableSpamCheck使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在SendGrid.SendGridMessage的用法示例。


在下文中一共展示了SendGridMessage.EnableSpamCheck方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Test_EnablingSpamCheck_2_url

        public void Test_EnablingSpamCheck_2_url()
        {
            var mail = BasicMailBuilder
                .EnableSpamCheck(score: 2, url: "http://spamcheck.example.com")
                .Build();

            var message = new SendGridMessage();
            message.EnableSpamCheck(score: 2, url: "http://spamcheck.example.com");
            Assert.IsFalse(string.IsNullOrEmpty(message.Header.JsonString()));
            Assert.AreEqual(message.Header.JsonString(), mail.Header.JsonString());
        }
開發者ID:saluce65,項目名稱:sendgrid-csharp-mailbuilder,代碼行數:11,代碼來源:UnitTest1.cs

示例2: Test_EnablingSpamCheck

        public void Test_EnablingSpamCheck()
        {
            var mail = BasicMailBuilder
                .EnableSpamCheck()
                .Build();

            var message = new SendGridMessage();
            message.EnableSpamCheck();
            Assert.IsFalse(string.IsNullOrEmpty(message.Header.JsonString()));
            Assert.AreEqual(message.Header.JsonString(), mail.Header.JsonString());
        }
開發者ID:saluce65,項目名稱:sendgrid-csharp-mailbuilder,代碼行數:11,代碼來源:UnitTest1.cs

示例3: EnableSpamCheckEmail

        /// <summary>
        ///     The Spam Checker filter, is useful when your web application allows your end users
        ///     to create content that is then emailed through your SendGridMessage account.
        ///     http://docs.sendgrid.com/documentation/apps/spam-checker-filter/
        /// </summary>
        public void EnableSpamCheckEmail()
        {
            //create a new message object
            var message = new SendGridMessage();

            //set the message recipients
            foreach (var recipient in _to)
            {
                message.AddTo(recipient);
            }

            //set the sender
            message.From = new MailAddress(_from);

            //set the message body
            var timestamp = DateTime.Now.ToString("HH:mm:ss tt");
            message.Html = "<p style='color:red';>VIAGRA!!!!!! Viagra!!! CHECKOUT THIS VIAGRA!!!! MALE ENHANCEMENT!!! </p>";
            message.Html += "<p>Sent At : " + timestamp + "</p>";

            //set the message subject
            message.Subject = "WIN A MILLION DOLLARS TODAY! WORK FROM HOME! A NIGERIAN PRINCE WANTS YOU!";

            //create an instance of the Web transport mechanism
            var transportInstance = new Web(new NetworkCredential(_username, _password));

            //enable spamcheck
            message.EnableSpamCheck();

            //send the mail
            transportInstance.Deliver(message);
        }
開發者ID:bobmclaren,項目名稱:sendgrid-csharp,代碼行數:36,代碼來源:WEBAPI.cs

示例4: EnableSpamCheckEmail

        /// <summary>
        ///     The Spam Checker filter, is useful when your web application allows your end users
        ///     to create content that is then emailed through your SendGridMessage account.
        ///     http://docs.sendgrid.com/documentation/apps/spam-checker-filter/
        /// </summary>
        public void EnableSpamCheckEmail()
        {
            //create a new message object
            var message = new SendGridMessage();

            //set the message recipients
            foreach (var recipient in _to)
            {
                message.AddTo(recipient);
            }

            //set the sender
            message.From = new MailAddress(_from);

            //set the message body
            var timestamp = DateTime.Now.ToString("HH:mm:ss tt");
            message.Html = "<p style='color:red';>This is a test of the WebApi sending service </p>";
            message.Html += "<p>Sent At : " + timestamp + "</p>";

            //set the message subject
            message.Subject = "This is a test of the message subject from the WebAPI sending service";

            //create an instance of the Web transport mechanism
            var transportInstance = new Web(new NetworkCredential(_username, _password));

            //enable spamcheck
            message.EnableSpamCheck();

            //send the mail
            transportInstance.DeliverAsync(message);
        }
開發者ID:mattb1024,項目名稱:SmartSheetService,代碼行數:36,代碼來源:WebApi.cs

示例5: EnableSpamCheck

        public void EnableSpamCheck()
        {
            var header = new Header();
            var sendgrid = new SendGridMessage(header);

            var score = 5;
            var url = "http://www.example.com";
            sendgrid.EnableSpamCheck(score, url);

            var json = header.JsonString();
            Assert.AreEqual(
                "{\"filters\" : {\"spamcheck\" : {\"settings\" : {\"enable\" : \"1\",\"maxscore\" : \"5\",\"url\" : \"http:\\/\\/www.example.com\"}}}}",
                json);
        }
開發者ID:npadmanabhan,項目名稱:sendgrid-csharp,代碼行數:14,代碼來源:TestSendgrid.cs


注:本文中的SendGrid.SendGridMessage.EnableSpamCheck方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。