Sending email securely

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default Sending email securely

    I have a .net application that employs asp.net, vb.net
    and sql server. The application is secured at client
    sites through their firewall. We want to add
    functionality that will automatically trigger emails
    (potentially with report attachments) that are sent to
    people outside of the firewall. The data is extremely
    sensitive. What is the best/reccommended way to secure
    the email and any attachemnts. Articles sites etc. would
    be greatly appreciated.
    Michael Guest

  2. Similar Questions and Discussions

    1. securely sending connection string to swf?
      ok so when i need to connect a swf to some sort of data source on the server be it XML, a .NET DLL, a CFC or what ever so that i can load data from...
    2. Sending an email from within ASP
      I have a form which will be processed by being sent to an ASP page. I would like the ASP page to take the data from the Request.QueryString (which I...
    3. Sending email using ASP page: how?
      "who be dat?" <forgetit@dot.com> wrote in message news:vlhfq5he815u1c@corp.supernews.com... FAQ. See the Windows XP section:...
    4. Sending a form by email
      What is the easiest way to send a form by email? I have created the forms but fail to understand how they can be sent to my email by persons filling...
    5. Sending an Email From Within Access
      Is it possible to send an email from within an Access form? I would like to send one everytime a certain field is set to specific value. I...
  3. #2

    Default Re: Sending email securely

    In order to secure your email, you are going to have to use encryption where
    you have matching implementations at both the client and the server. I have
    used PGP implementations in the past. The new version of Outlook will be
    using Windows Rights Management, which you can dig into here:

    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/rms_sdk/htm/windowsrightsmanagementservicessdk.asp[/url]

    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/drmclsdk/htm/windowsrightsmanagementclientsdk.asp[/url]

    There are certainly other encryption providers, these are just the two that
    I am familiar with. The choice really depends on what your clients already
    have or are willing to install in order to read email from you.

    If your clients are unwilling or unable to install new software, you merely
    need to think outside of the box. For example, you could email a link to an
    https site, where you authenticate them and then enable them to view and
    download your payload over an encrypted channel.

    --
    Chris Jackson
    Software Engineer
    Microsoft MVP - Windows XP
    Windows XP Associate Expert
    --
    "Michael" <mgrafton@innervateinc.com> wrote in message
    news:128f01c37ebc$65e90fb0$a401280a@phx.gbl...
    > I have a .net application that employs asp.net, vb.net
    > and sql server. The application is secured at client
    > sites through their firewall. We want to add
    > functionality that will automatically trigger emails
    > (potentially with report attachments) that are sent to
    > people outside of the firewall. The data is extremely
    > sensitive. What is the best/reccommended way to secure
    > the email and any attachemnts. Articles sites etc. would
    > be greatly appreciated.

    Chris Jackson Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139