Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. EMail Logic Question

EMail Logic Question

Scheduled Pinned Locked Moved C / C++ / MFC
questionsysadminbeta-testingcode-review
9 Posts 5 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B Offline
    B Offline
    BaldwinMartin
    wrote on last edited by
    #1

    Hi I have a small app that is included with my main app's. All it does is collet the users feedback and emails the same to me. When the mod goes to email should I ? Use my send mail account to carry the mail? or Use the cleints email account? Since send does not require a password either will be easy. I need some input on this as a friend said if I used my mail server in the U.S. from the other side of the world it might not work. Best Wishes and Happy Holiday's, ez_way

    A G T R 4 Replies Last reply
    0
    • B BaldwinMartin

      Hi I have a small app that is included with my main app's. All it does is collet the users feedback and emails the same to me. When the mod goes to email should I ? Use my send mail account to carry the mail? or Use the cleints email account? Since send does not require a password either will be easy. I need some input on this as a friend said if I used my mail server in the U.S. from the other side of the world it might not work. Best Wishes and Happy Holiday's, ez_way

      A Offline
      A Offline
      Alexander M
      wrote on last edited by
      #2

      i would prefer using the client's email account. why should u use ur email acc for other users? Don't try it, just do it! ;-)

      B 1 Reply Last reply
      0
      • A Alexander M

        i would prefer using the client's email account. why should u use ur email acc for other users? Don't try it, just do it! ;-)

        B Offline
        B Offline
        BaldwinMartin
        wrote on last edited by
        #3

        Thank you for your input. Best Wishes and Happy Holiday's, ez_way

        1 Reply Last reply
        0
        • B BaldwinMartin

          Hi I have a small app that is included with my main app's. All it does is collet the users feedback and emails the same to me. When the mod goes to email should I ? Use my send mail account to carry the mail? or Use the cleints email account? Since send does not require a password either will be easy. I need some input on this as a friend said if I used my mail server in the U.S. from the other side of the world it might not work. Best Wishes and Happy Holiday's, ez_way

          G Offline
          G Offline
          Garth J Lancaster
          wrote on last edited by
          #4

          I too would go 'client side' - as long as it was stipulated somewhere that 'use of this program/xyz requires a working email setup' I remember writing a commercial email interface for an acquantance, and one of his customers came back and said 'it doesnt work' .. when I received the error log, the customer didnt have the right smtp account at his isp .. groan 'G'

          B 1 Reply Last reply
          0
          • G Garth J Lancaster

            I too would go 'client side' - as long as it was stipulated somewhere that 'use of this program/xyz requires a working email setup' I remember writing a commercial email interface for an acquantance, and one of his customers came back and said 'it doesnt work' .. when I received the error log, the customer didnt have the right smtp account at his isp .. groan 'G'

            B Offline
            B Offline
            BaldwinMartin
            wrote on last edited by
            #5

            Yes, I understand. What if I used both, orr let me correct that. If one failed use the other. If I use my own I know the ports, the authinication,an all the bells and whistles. If it timed out I would know that there is a long hop between the user and my mail server, and grab the default email account from the reg and send it that way. Best Wishes and Happy Holiday's, ez_way

            G 1 Reply Last reply
            0
            • B BaldwinMartin

              Yes, I understand. What if I used both, orr let me correct that. If one failed use the other. If I use my own I know the ports, the authinication,an all the bells and whistles. If it timed out I would know that there is a long hop between the user and my mail server, and grab the default email account from the reg and send it that way. Best Wishes and Happy Holiday's, ez_way

              G Offline
              G Offline
              Garth J Lancaster
              wrote on last edited by
              #6

              the problem with this, as I see it, is, what if you user has to go through a firewall to get to you ?? I can imagine the smirk (and answer) from our comms team If I said 'Ive got this app that instead of using our mail client set up, wants you to open a port on the firewall for it to speak directly home' ... See, it depends if you're talking small or large .. in our case, every desktop is going to have a valid mail client - (we use Novell Groupwise), so, we would invoke a 'mailto' - ditto any clients I have that use Outlook, anything Mapi compliant etc ... only in rare circumstances do we allow 'things' to speak direct smtp to our mail server, these are usually automated programs (and they have to traverse an inner firewall to get to the smtp server) 'G'

              B 1 Reply Last reply
              0
              • G Garth J Lancaster

                the problem with this, as I see it, is, what if you user has to go through a firewall to get to you ?? I can imagine the smirk (and answer) from our comms team If I said 'Ive got this app that instead of using our mail client set up, wants you to open a port on the firewall for it to speak directly home' ... See, it depends if you're talking small or large .. in our case, every desktop is going to have a valid mail client - (we use Novell Groupwise), so, we would invoke a 'mailto' - ditto any clients I have that use Outlook, anything Mapi compliant etc ... only in rare circumstances do we allow 'things' to speak direct smtp to our mail server, these are usually automated programs (and they have to traverse an inner firewall to get to the smtp server) 'G'

                B Offline
                B Offline
                BaldwinMartin
                wrote on last edited by
                #7

                That is why I love you guy's! Great Answer! Thanks Best Wishes and Happy Holiday's, ez_way

                1 Reply Last reply
                0
                • B BaldwinMartin

                  Hi I have a small app that is included with my main app's. All it does is collet the users feedback and emails the same to me. When the mod goes to email should I ? Use my send mail account to carry the mail? or Use the cleints email account? Since send does not require a password either will be easy. I need some input on this as a friend said if I used my mail server in the U.S. from the other side of the world it might not work. Best Wishes and Happy Holiday's, ez_way

                  T Offline
                  T Offline
                  Tim Smith
                  wrote on last edited by
                  #8

                  You don't need an email account to send email. Take a look PJ Naughter's SMTP software http://www.naughter.com/smtp.html[^]. It will allow you to send the email directly to your email servers without having to go through any email forwarding servers. However, it does mean that your email server will have to be available 24/7 since there is no in between server to retry if the email fails to be delivered. Tim Smith I'm going to patent thought. I have yet to see any prior art.

                  1 Reply Last reply
                  0
                  • B BaldwinMartin

                    Hi I have a small app that is included with my main app's. All it does is collet the users feedback and emails the same to me. When the mod goes to email should I ? Use my send mail account to carry the mail? or Use the cleints email account? Since send does not require a password either will be easy. I need some input on this as a friend said if I used my mail server in the U.S. from the other side of the world it might not work. Best Wishes and Happy Holiday's, ez_way

                    R Offline
                    R Offline
                    Ravi Bhavnani
                    wrote on last edited by
                    #9

                    Why email? Why not just do an HTTP post to a script running on your server? You could capture a lot more data in an organized manner that way. (Your script can even send a notification message to a tech support address). /ravi Let's put "civil" back in "civilization" Home | Articles | Freeware | Music ravib@ravib.com

                    1 Reply Last reply
                    0
                    Reply
                    • Reply as topic
                    Log in to reply
                    • Oldest to Newest
                    • Newest to Oldest
                    • Most Votes


                    • Login

                    • Don't have an account? Register

                    • Login or register to search.
                    • First post
                      Last post
                    0
                    • Categories
                    • Recent
                    • Tags
                    • Popular
                    • World
                    • Users
                    • Groups