SMPT
-
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
-
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; }
-
hi I am using ASP.NET, My webserver is godaddy.com. thanks
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
-
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
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... << >>
-
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... << >>
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
-
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
So did you have code for this function? I read your post I think you got problem with your code...is this right? << >>
-
So did you have code for this function? I read your post I think you got problem with your code...is this right? << >>
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)
-
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)
-
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)
So what happen when this code is executed on your server? any exception? << >>