Tag: SES

  • 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"/>…

    + , , , , , ,