Author |
Topic  |
|
nagendra
Starting Member
4 Posts |
Posted - 22 November 2006 : 04:18:48
|
Hi,
I getting following error, my hosting is supporting persist email component. ******** Persits.MailSender.4 error '800a0006'
550 Authentication is required for relay
/forum/inc_mail.asp, line 64 ********************** code in inc_mail.asp ********************* case "aspemail" Set objNewMail = Server.CreateObject("Persits.MailSender") objNewMail.FromName = strFromName objNewMail.From = strSender objNewMail.AddReplyTo strSender objNewMail.Host = strMailServer objNewMail.AddAddress strRecipients, strRecipientsName objNewMail.Subject = strSubject objNewMail.Body = strMessage on error goto 0 '## Ignore Errors objNewMail.Send If Err <> 0 Then Err_Msg = Err_Msg & "<li>Your request was not sent due to the following error: " & Err.Description & "</li>" End if ***************
|
|
HuwR
Forum Admin
    
United Kingdom
20595 Posts |
Posted - 22 November 2006 : 04:52:35
|
you will need to add the following two lines to that section
objNewMail.Username = YOURMAILUSERNAME objNewMail.Password = YOURMAILPASSWORD
|
 |
|
nagendra
Starting Member
4 Posts |
Posted - 05 December 2006 : 01:42:01
|
Hi, thanks for your suggestion, even though its not working, its saying Successfully sent. Forgot password or email contact between persons are not working. |
 |
|
nagendra
Starting Member
4 Posts |
Posted - 05 December 2006 : 01:47:52
|
If its not possible then can I display user email address insted of "Click to send an E-Mail "
My Contact Info E-mail User: Click to send an E-Mail
|
 |
|
nagendra
Starting Member
4 Posts |
Posted - 05 December 2006 : 07:00:26
|
Thanks a lot. Its working, actually all emails are going to spam, is there any tip.
thanks Nag |
 |
|
trevally
Starting Member
46 Posts |
Posted - 17 March 2007 : 23:25:13
|
Hmmm, I am also facing this problem now as my hosting company has blocked relaying due to prevent spamming. When I updated lines with:
objNewMail.Username = example@example.com objNewMail.Password = example
I get a HTTP 500 Internal server error. The page cannot be displayed. The hosting company actually advised me to "hardcode the email address and password inside the code", which I presume to be the advise the HuwR gave.
Updating the inc_mail.asp with the two above lines caused my entire forum to go into the HTTP 500 situation. Is there something else missing?
Thanks, Vincent |
 |
|
Rtwhite
Starting Member
USA
27 Posts |
Posted - 04 April 2007 : 15:53:12
|
I am new to the form. I think it is a great product and I appreciate you for allowing us to use it free. Thanks again. I am having a small problem with the email part. The people that host the website (Parcom.net) where the forum is being used, uses your forum on their website so I must assume that they support the type of mail server that is being used. I have contacted their support asking about this problem and they have given up. No one can send mail to anyone else that is a member. Sure hope you can help me with this. Thanks Robert |
Edited by - Rtwhite on 04 April 2007 15:54:15 |
 |
|
pdrg
Support Moderator
    
United Kingdom
2897 Posts |
Posted - 05 April 2007 : 08:46:08
|
objNewMail.Username = "example@example.com" objNewMail.Password = "example"
They're strings so you must delimit them with "
hth
|
 |
|
pdrg
Support Moderator
    
United Kingdom
2897 Posts |
Posted - 05 April 2007 : 08:48:06
|
quote: Originally posted by Rtwhite
I am new to the form. I think it is a great product and I appreciate you for allowing us to use it free. Thanks again. I am having a small problem with the email part. The people that host the website (Parcom.net) where the forum is being used, uses your forum on their website so I must assume that they support the type of mail server that is being used. I have contacted their support asking about this problem and they have given up. No one can send mail to anyone else that is a member. Sure hope you can help me with this. Thanks Robert
Try asking them what settings they have in Snitz to sendeve one set up the same as their own
If still no joy, try startung a new thread here, threadjacking tends to get overlooked :) |
 |
|
|
Topic  |
|