Tag: AWS
-
+
+
+
+
+
+
So I had a .Net application that needed to leverage the Network Service application identity instead of the OOB ApplicationPoolIdentity that comes with a default shipped EBS windows server with IIS. The solution? An ebextenion of course! 0) We’re going to have a step 0 assuming you already have a…
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
First, consult with AWS and get your credentials: http://docs.aws.amazon.com/ses/latest/DeveloperGuide/using-credentials.html and http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-using-smtp-net.html Secondly, let’s make a more easily updatable emailSettings section (encrypt it later, see here if you need help): [sourcecode] <appSettings> <add key="MailFrom" value="donotreply@youremaildomain.com"/> <add key="MailTo" value="whoareyousendingto@theiremaildomain.com"/> <add key="MailHost" value=" email-smtp.youramazonseshost.com"/> <add key="MailPort" value="587"/> <add key="MailServerUserName" value="awsSESusername"/> <add key="MailServerPassword" value="awsSESpassword"/>…