博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用azure send grid发送email
阅读量:6582 次
发布时间:2019-06-24

本文共 1060 字,大约阅读时间需要 3 分钟。

1. create a send grid account
2. remember the username/password of the send grid account
3. install sendgrid nuget pkg
4. get key
manage ->it will redirect you to manage portal
create a new api key:
4. sample code of console application

using System;using System.Net.Mail;using SendGrid;namespace SendGridAzureSample{    class Program    {        static void Main(string[] args)        {            SendGridMessage myMessage = new SendGridMessage();            myMessage.AddTo("send_to");            myMessage.From = new MailAddress("from_email", "Display name");            myMessage.Subject = "Testing the SendGrid Library";            myMessage.Text = "Hello World!";            //myMessage.AddAttachment(@"attachment_path");            var key = "your_key";            // create a Web transport, using API Key            var transportWeb = new Web(key);            transportWeb.DeliverAsync(myMessage);            Console.ReadKey();        }    }}

reference link : https://azure.microsoft.com/en-us/documentation/articles/sendgrid-dotnet-how-to-send-email/

你可能感兴趣的文章
信号量(一)
查看>>
开发前奏曲之添加Android SDK平台工具
查看>>
poj 2263&& zoj1952 floyd
查看>>
Django跨站伪造请求保护措施设置方法[转]
查看>>
关掉firefox(火狐)和palemoon地址栏自动加www.前缀功能【转】
查看>>
hdu 4300 Clairewd’s message(KMP)
查看>>
burp suite 使用教程详解(外文翻译转)
查看>>
Python循环
查看>>
Flume研究心得
查看>>
概要文件的创建
查看>>
虚拟域名设置步骤
查看>>
Oracle的substr函数简单用法
查看>>
knockout.js模板绑定之利用Underscore.js模板引擎示例
查看>>
马婕 2014MBA专硕考试报刊选读 5 朱令案悬而未决引起全社会的关注(转)
查看>>
【iOS开发必备指南合集】申请企业级IDP、真机调试、游戏接入GameCenter 指南(实现仿官方的成就提示)、游戏接入OpenFeint指南;...
查看>>
SVN OPS发布总结
查看>>
二维数组旋转45度
查看>>
三种客户端访问wcf服务端的方法 C#
查看>>
c# WebBrowser获取cookie
查看>>
【流媒体】UPnP的工作过程
查看>>