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. Web Development
  3. SMPT

SMPT

Scheduled Pinned Locked Moved Web Development
helptutorial
10 Posts 3 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.
  • R Offline
    R Offline
    rajmani
    wrote on last edited by
    #1

    Hi all, how to config Smpt in ftp, i have create one website there i want auto reply mail. how i get,any config there, plz help me thanks

    G 1 Reply Last reply
    0
    • R rajmani

      Hi all, how to config Smpt in ftp, i have create one website there i want auto reply mail. how i get,any config there, plz help me thanks

      G Offline
      G Offline
      Guffa
      wrote on last edited by
      #2

      I assume that you mean SMTP, as you are talking about mail? I don't know what you mean by "config Smpt in ftp", though. SMTP has nothing to do with FTP. What platform are you using? ASP? ASP.NET? PHP? JSP?

      --- b { font-weight: normal; }

      R 1 Reply Last reply
      0
      • G Guffa

        I assume that you mean SMTP, as you are talking about mail? I don't know what you mean by "config Smpt in ftp", though. SMTP has nothing to do with FTP. What platform are you using? ASP? ASP.NET? PHP? JSP?

        --- b { font-weight: normal; }

        R Offline
        R Offline
        rajmani
        wrote on last edited by
        #3

        hi I am using ASP.NET, My webserver is godaddy.com. thanks

        R 1 Reply Last reply
        0
        • R rajmani

          hi I am using ASP.NET, My webserver is godaddy.com. thanks

          R Offline
          R Offline
          rajmani
          wrote on last edited by
          #4

          hi, i have create one asp.net website there i want to reply some mail to user. for example i want to sent mail to after registration, use my website IP address but not working, so any config are any setting in my webserver i am using www.godaddy.com thanks

          E 1 Reply Last reply
          0
          • R rajmani

            hi, i have create one asp.net website there i want to reply some mail to user. for example i want to sent mail to after registration, use my website IP address but not working, so any config are any setting in my webserver i am using www.godaddy.com thanks

            E Offline
            E Offline
            enjoycrack
            wrote on last edited by
            #5

            So what exception you face when running the code of sending email? You can work with the administrator to fix the issue basing on the exception... << >>

            R 1 Reply Last reply
            0
            • E enjoycrack

              So what exception you face when running the code of sending email? You can work with the administrator to fix the issue basing on the exception... << >>

              R Offline
              R Offline
              rajmani
              wrote on last edited by
              #6

              When a client registers with the site, I wish to send the user, a confirmation to his registered e-mail Id. So is with any of his correspondence. An Automatic reply mail needs to be made acknowledging the transaction. For this, how do I go about. The site is developed with ASP.NET

              E 1 Reply Last reply
              0
              • R rajmani

                When a client registers with the site, I wish to send the user, a confirmation to his registered e-mail Id. So is with any of his correspondence. An Automatic reply mail needs to be made acknowledging the transaction. For this, how do I go about. The site is developed with ASP.NET

                E Offline
                E Offline
                enjoycrack
                wrote on last edited by
                #7

                So did you have code for this function? I read your post I think you got problem with your code...is this right? << >>

                R 1 Reply Last reply
                0
                • E enjoycrack

                  So did you have code for this function? I read your post I think you got problem with your code...is this right? << >>

                  R Offline
                  R Offline
                  rajmani
                  wrote on last edited by
                  #8

                  Hi, Below is the code. Its working fine in Localhost, but once uploaded its not functioning. Plz, go thru and let know Thanx. Dim emailmsg As New MailMessage emailmsg.To = Trim(ds.Tables(0).Rows(0).Item("emailID")) emailmsg.From = "Admin" emailmsg.Subject = " Password Reminder" emailmsg.BodyFormat = MailFormat.Html emailmsg.Body = emailmsg.Body & "Here are your account details: " emailmsg.Body = emailmsg.Body & "Login Name: " & Trim(txtlogin.Text) & " " emailmsg.Body = emailmsg.Body & "Password: " & ds.Tables(0).Rows(0).Item("password") & " " emailmsg.Body = emailmsg.Body & "This email is for your informational purposes only. Please do not reply to this email " emailmsg.Body = emailmsg.Body & " Thank you" SmtpMail.SmtpServer = "64.xxx.xxx.xxx" ds.Dispose() da.Dispose() SmtpMail.Send(emailmsg)

                  G E 2 Replies Last reply
                  0
                  • R rajmani

                    Hi, Below is the code. Its working fine in Localhost, but once uploaded its not functioning. Plz, go thru and let know Thanx. Dim emailmsg As New MailMessage emailmsg.To = Trim(ds.Tables(0).Rows(0).Item("emailID")) emailmsg.From = "Admin" emailmsg.Subject = " Password Reminder" emailmsg.BodyFormat = MailFormat.Html emailmsg.Body = emailmsg.Body & "Here are your account details: " emailmsg.Body = emailmsg.Body & "Login Name: " & Trim(txtlogin.Text) & " " emailmsg.Body = emailmsg.Body & "Password: " & ds.Tables(0).Rows(0).Item("password") & " " emailmsg.Body = emailmsg.Body & "This email is for your informational purposes only. Please do not reply to this email " emailmsg.Body = emailmsg.Body & " Thank you" SmtpMail.SmtpServer = "64.xxx.xxx.xxx" ds.Dispose() da.Dispose() SmtpMail.Send(emailmsg)

                    G Offline
                    G Offline
                    Guffa
                    wrote on last edited by
                    #9

                    Standard question #1: What do you mean by "not working"?

                    --- b { font-weight: normal; }

                    1 Reply Last reply
                    0
                    • R rajmani

                      Hi, Below is the code. Its working fine in Localhost, but once uploaded its not functioning. Plz, go thru and let know Thanx. Dim emailmsg As New MailMessage emailmsg.To = Trim(ds.Tables(0).Rows(0).Item("emailID")) emailmsg.From = "Admin" emailmsg.Subject = " Password Reminder" emailmsg.BodyFormat = MailFormat.Html emailmsg.Body = emailmsg.Body & "Here are your account details: " emailmsg.Body = emailmsg.Body & "Login Name: " & Trim(txtlogin.Text) & " " emailmsg.Body = emailmsg.Body & "Password: " & ds.Tables(0).Rows(0).Item("password") & " " emailmsg.Body = emailmsg.Body & "This email is for your informational purposes only. Please do not reply to this email " emailmsg.Body = emailmsg.Body & " Thank you" SmtpMail.SmtpServer = "64.xxx.xxx.xxx" ds.Dispose() da.Dispose() SmtpMail.Send(emailmsg)

                      E Offline
                      E Offline
                      enjoycrack
                      wrote on last edited by
                      #10

                      So what happen when this code is executed on your server? any exception? << >>

                      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