I got the smtp server address from my host. I made the change, then I
received this message:
The server rejected one or more recipient addresses. The server response
was: 550 <xxxxxxx.xxxxxx@xxxxxx.com> is not a valid mailbox
I have x'd out my address for security.
We host our own e-mail addresses inside the company - not on our hosting
server. But since it says *recipient* address I don't understand why it
says "not a valid mailbox"
Here is my code:
--------------------------------------------------------
myMessage.From = "ssssss.ssssssst@ssssssss..com"
' myMessage.To = strEmail
MyMessage.To = "sssssss.ssssssst@ssssssss..com"
myMessage.Subject = "Accident Form (HTML)"
---------------------------------------------------------------------------
The from and to emails are the same.
Can you help me?
>> Using ASP.Net and Framework 1.1.4322
>> File works fine on my computer. On my host server, I get this message.
[quoted text clipped - 29 lines]
>
> myMail.SmtpServer = "localhost"
dancer - 13 Jun 2007 18:26 GMT
It is the TO address that is the problem, for I changed that one, and the
error message pointed it out. Now why would the TO address be a problem?
That should not have anything to do with a mail box on the host server,
should it?
>I got the smtp server address from my host. I made the change, then I
>received this message:
[quoted text clipped - 54 lines]
>>
>> myMail.SmtpServer = "localhost"
Alexey Smirnov - 13 Jun 2007 21:31 GMT
> I got the smtp server address from my host. I made the change, then I
> received this message:
> The server rejected one or more recipient addresses. The server response
> was: 550 <xxxxxxx.xxx...@xxxxxx.com> is not a valid mailbox
> I have x'd out my address for security.
"sssssss.ssssssst@ssssssss..com"
two dots at the end?
dancer - 13 Jun 2007 21:40 GMT
No - I made that error when I changed the real address to x's and s's on
this message
>> I got the smtp server address from my host. I made the change, then I
>> received this message:
[quoted text clipped - 5 lines]
>
> two dots at the end?
Alexey Smirnov - 13 Jun 2007 23:13 GMT
> No - I made that error when I changed the real address to x's and s's on
> this message
It seems that you have no rights to send an email. Either you have to
authenticate using a username and a password, or you need to have the
persmissions to relay through the server.
http://www.systemnetmail.com/faq/1.4.aspx
dancer - 14 Jun 2007 18:46 GMT
On our website there are pages (maintained in Front Page) that communicate
with us through e-mail.
(No reference is made of SMTP on these pages.)
Why would we have permissions to relay through the server on those pages,
but not when I'm using Asp.net?
Thanks
>> No - I made that error when I changed the real address to x's and s's on
>> this message
[quoted text clipped - 4 lines]
>
> http://www.systemnetmail.com/faq/1.4.aspx
Alexey Smirnov - 14 Jun 2007 22:15 GMT
> On our website there are pages (maintained in Front Page) that communicate
> with us through e-mail.
> (No reference is made of SMTP on these pages.)
Does it mean you have a link, a sort of <a
href=mailto:xxx@xxx.com>Send me an email</> which is not required a
SMTP?
dancer - 14 Jun 2007 23:12 GMT
Maybe so ..... Here is the code: If so, why isn't SMTP required? And why
can't I get by without SMTP on an ASP.net application?
<form method="POST" name="Contact Request" action="--WEBBOT-SELF--"
onSubmit="location.href='_derived/nortbots.htm';return false;"
webbot-onSubmit>
<!--webbot bot="SaveResults" u-file="_private/contact_req.txt"
s-format="TEXT/PRE" s-label-fields="TRUE" b-reverse-chronology="FALSE"
s-email-format="TEXT/PRE" s-email-address="xxxxxxxxxx@xxxxxxxx.com"
b-email-label-fields="TRUE" b-email-replyto-from-field="TRUE"
s-email-replyto="Email" b-email-subject-from-field="FALSE"
s-email-subject="Contact Request" s-date-format="%m/%d/%Y"
s-time-format="%I:%M %p" s-builtin-fields="Date Time" s-form-fields="Reason
Source Other FirstName LastName Address1 Address2 City State Zip Phone Fax
Email Comments " startspan --><input TYPE="hidden" NAME="VTI-GROUP"
VALUE="0"><!--webbot bot="SaveResults" endspan i-checksum="43374" -->
<p><FONT face="Arial, Helvetica, sans-serif" size=2><B>Have a
Wheeler's representative contact me
regarding:</B></FONT> </p>
>> On our website there are pages (maintained in Front Page) that
>> communicate
[quoted text clipped - 4 lines]
> href=mailto:xxx@xxx.com>Send me an email</> which is not required a
> SMTP?