473,386 Members | 1,801 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Brinkster Form Mailer Problem

I've tried the two following Send_Email sub routines on Brinkster. No
luck getting either to work. Could someone that has experience with
Brinkster please let me know what is going on? I've gotten the form to
submit but get an error that says:

System.Runtime.InteropServices.COMException: The server rejected one or
more recipient addresses. The server response was: 550 5.7.1 ...

Please help! I must have this up by Sunday night. I've already e-mailed
Customer Support about the mail relay factor. I'm up for anything at
this point. A little aside, I've changed mail.mydomain.com to the
actual IP address of my SMTP server but didn't want to broadcast that
information to the world.

Sub Send_Email(sender As Object, e As System.EventArgs)

Dim oMessage As New System.Web.Mail.MailMessage()
oMessage.To = "te**@dotcom.net"
oMessage.From = "us**@dotcom.net"
oMessage.Subject = "Testing 1-2-3"
oMessage.Body = "asdf 1-2-3!"
oMessage.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing")
= 2
oMessage.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver")
= "mail.mydomain.com"
oMessage.Fields.Item'oMessage.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate")
= 1
System.Web.Mail.SmtpMail.SmtpServer = "mail.mydomain.com"
Try
System.Web.Mail.SmtpMail.Send(oMessage)
Response.Write("Email sent!")
Catch Ex As Exception
Response.Write("Unable to send mail! " & Ex.Message)
End Try

END Sub

Sub Send_Email(sender As Object, e As System.EventArgs)

Dim mail As New MailMessage()
mail.To = "te**@dotcom.net"
mail.From = "us**@dotcom.net"
mail.Subject = "Testing 1-2-3"
mail.Body = "asdf 1-2-3"
SmtpMail.SmtpServer = "mail.mydomain.com"
SmtpMail.Send(mail)

END Sub

Nov 19 '05 #1
0 1026

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: John Davis | last post by:
What is the **MOST** obvious reason why will this will fail (it's not syntax or anything specific to the object)? Function Mail(MailerProgram, Message, Subject, Format, FromEmail, ToEmail,...
4
by: Horhayson | last post by:
Trying to fix a web site I inherited. Problem is with the *help* page. User fills out form and hits send. The browser comes back with Error Number 424, Error Description Object Required, Key Name...
2
by: Ciberguy | last post by:
I created a form that collects information from a user via a web page. The form appears to work well - it won't let you submit the form until required data is place in the required fields. I...
3
by: Guy Verville | last post by:
I'm perplexed, I have several forms that seem to be ok, but what is sent by email doesn't contain all the Carriage returns sent. The form contains many fields and is sent as follow:...
1
by: javascript | last post by:
I need to modify a code in Java Script for a Form Mailer page (asp), to be used for online newsletter subscriptions. So long, CDONTS had been playing an important role here, but since SMTP...
2
by: kind1one | last post by:
I am green to PHP and trying to create outside PHP mailer for html form ,i found the script i need but I can't get it to upload more than one file ,since i do not know exactly where to place script...
2
by: carringtonf | last post by:
Okay, I have a form up that worked fine until recently. My hosting (1&1) is denying that they did anything, and that they can't assist me. So I turn to you. Form location -...
6
by: Dave Kelly | last post by:
Sorry for the long post, it is easier to discard information than to have to wait for it to arrive. So here goes: This code worked perfectly when I was an Earthlink customer. Sprint decided...
12
by: colt28 | last post by:
Ok so I found an ajax contact form script but i can't get the b****** to work. I made a bunch of alterations to it and it didn't work so i replaced everything with the original and it still didn't...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.