Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions NuGet.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<configuration>
<packageSources>
<add key="nuget.org" value="https://www.nuget.org/api/v2/" />
<add key="AspNetVNext" value="https://www.myget.org/F/aspnetcidev/api/v2/" />
<add key="Code Comb" value="https://www.myget.org/F/codecomb/api/v2/" />
<add key="Code Comb" value="https://www.myget.org/F/codecomb-rc1/api/v2/" />
</packageSources>
</configuration>
3 changes: 2 additions & 1 deletion samples/CodeComb.Net.EmailSender.Sample/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ public class Program
{
public void Main(string[] args)
{
var mail = new SmtpEmailSender("smtp.qq.com", 25, "Code Comb", "YourQQNumber@qq.com", "YourQQNumber", "YourPassword");
var mail = new SmtpEmailSender("smtp.ym.163.com", 25, "Code Comb", "noreply@vnextcn.org", "noreply@vnextcn.org", "123456");
mail.SendEmailAsync("1@1234.sh","关于MailSender项目说明", "<html><head><meta http-equiv=\"Content-type\" content=\"text/html;charset=utf-8\"/></head><body>能收到邮件吗</body></html>").Wait();
Console.Read();
}
}
}
10 changes: 5 additions & 5 deletions samples/CodeComb.Net.EmailSender.Sample/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
"dnx451": { },
"dnxcore50": {
"dependencies": {
"Microsoft.CSharp": "4.0.1-beta-23409",
"System.Collections": "4.0.11-beta-23409",
"System.Console": "4.0.0-beta-23409",
"System.Linq": "4.0.1-beta-23409",
"System.Threading": "4.0.11-beta-23409"
"Microsoft.CSharp": "4.0.1-beta-23516",
"System.Collections": "4.0.11-beta-23516",
"System.Console": "4.0.0-beta-23516",
"System.Linq": "4.0.1-beta-23516",
"System.Threading": "4.0.11-beta-23516"
}
}
}
Expand Down
Loading