Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ASP & CDONTS

Status
Not open for further replies.

jgisler

IS-IT--Management
Feb 13, 2002
9
US
Hi,
I have a asp form that uses CDONTS. When you access the form and fill it out, everything works fine. When you click send there is no error and everything looks to have been sent. However the email never goes anywhere. I know that CDONTS is set up correctly, because other form are getting through. I have included the code below (there is a ton of it), and any help or advice on this would be greatly appreciated.
Thanks,
Jen :)

<% @ Language = VBScript %>
<%
ON ERROR RESUME NEXT
Dim stepnum, body, email, mail
email = Request.Form(&quot;senderemail&quot;)
If Request.Form(&quot;step&quot;) = &quot;&quot; Then
stepnum=1
Else
stepnum = Request.form(&quot;step&quot;) + 1
End If
If stepnum = 2 Then
If Request.Form(&quot;requiredLocation&quot;) = 1 Then stepnum = 3
End if
Body = Request.Form(&quot;body&quot;)
If Request.Form(&quot;public&quot;) = &quot;Yes&quot; Then Body = Body & chr(13) & &quot;Yes, I am Tax Exempt.&quot;
If Request.Form(&quot;taxidnumber&quot;)<> &quot;&quot; Then Body = Body & chr(13) & &quot;Tax ID Number: &quot; & Request.Form(&quot;taxidnumber&quot;)
If Request.Form(&quot;public&quot;) = &quot;No&quot; Then Body = Body & chr(13) & &quot;No, I am Not Tax Exempt.&quot;
If Request.Form(&quot;requiredContact&quot;)<> &quot;&quot; Then Body = Body & chr(13) & &quot;Contact: &quot; & Request.Form(&quot;requiredContact&quot;)
' If Request.Form(&quot;Contact&quot;) <> &quot;&quot; Then Body = Body & chr(13) & &quot;Contact: &quot; & Request.Form(&quot;Contact&quot;)
If Request.Form(&quot;requiredOrganization&quot;)<> &quot;&quot; Then Body = Body & chr(13) & &quot;Organization: &quot; & Request.Form(&quot;requiredOrganization&quot;)
If Request.Form(&quot;requiredLocationName&quot;) <> &quot;&quot; Then Body = Body & chr(13) & &quot;Location of talk: &quot; & Request.Form(&quot;requiredLocationName&quot;)
If Request.Form(&quot;requiredaddress1&quot;)<> &quot;&quot; Then Body = Body & chr(13) & &quot;Address: &quot; & Request.Form(&quot;requiredAddress1&quot;)
If Request.Form(&quot;address2&quot;)<> &quot;&quot; Then Body = Body & chr(13) & &quot;Address 2: &quot; & Request.Form(&quot;Address2&quot;)
If Request.Form(&quot;requiredcity&quot;)<> &quot;&quot; Then Body = Body & chr(13) & &quot;City: &quot; & Request.Form(&quot;requiredCity&quot;)
If Request.Form(&quot;requiredstate&quot;)<> &quot;&quot; Then Body = Body & chr(13) & &quot;State: &quot; & Request.Form(&quot;requiredState&quot;)
If Request.Form(&quot;zip&quot;)<> &quot;&quot; Then Body = Body & chr(13) & &quot;ZIP: &quot; & Request.Form(&quot;Zip&quot;)
If Request.Form(&quot;phone&quot;)<> &quot;&quot; Then Body = Body & chr(13) & &quot;Phone: &quot; & Request.Form(&quot;Phone&quot;)
If Request.Form(&quot;fax&quot;)<> &quot;&quot; Then Body = Body & chr(13) & &quot;Fax: &quot; & Request.Form(&quot;Fax&quot;)
If Request.Form(&quot;requiredpassword&quot;)<> &quot;&quot; Then Body = Body & chr(13) & &quot;Password: &quot; & Request.Form(&quot;requiredpassword&quot;)
If Request.Form(&quot;email&quot;)<> &quot;&quot; Then
Body = Body & chr(13) & &quot;Email: &quot; & Request.Form(&quot;Email&quot;)
email= Request.Form(&quot;email&quot;)
End If
If Request.Form(&quot;datetime&quot;) <> &quot;&quot; Then Body = Body & chr(13) & &quot;Additional Information: &quot; & Request.Form(&quot;DateTime&quot;)
If Request.Form(&quot;issues&quot;) <> &quot;&quot; Then Body = Body & chr(13) & &quot;Questions: &quot; & Request.Form(&quot;Issues&quot;)

%>
<html>
<head>
<title>Step <%=stepnum %> - New Account Setup Form</title>
<SCRIPT LANGUAGE=&quot;JavaScript&quot;>
<!-- Begin
function checkrequired(formdata, stepnum) {
var pass=true;
if (document.images) {
for (i=0;i<formdata.length;i++) {
var tempobj=formdata.elements;
if (tempobj.name.substring(0,8)==&quot;required&quot;) {
if (tempobj.value==''||(tempobj.type.toString().charAt(0)==&quot;s&quot;&&tempobj.selectedIndex==0)) {
pass=false;
break;
}
}
}
}
if (pass) {
if (stepnum==1) {
if (!(formdata.elements[9].value=='')) {
/* check if there's a phone number */
return true;
}
if (!(formdata.elements[10].value=='')) {
/* check if there's a fax number */
return true;
}
if (!(formdata.elements[11].value=='')) {
/* check if there's an email address */
return true;
}
alert(&quot;Please fill in at least one of the following fields: Phone, Fax, or Email.&quot;);
return false;
}
return true;
}
else {
shortFieldName=tempobj.name.substring(8,30);
alert(&quot;Please make sure the &quot;+shortFieldName+&quot; field was properly completed.&quot;);
return false;
}
return true;
}

function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
// End -->
</script>
<style type=&quot;text/css&quot;>
<!--
span.required {
font-size : 8pt;
color : red;
}
-->
</style>


<% If stepnum <> 6 Then %>



<% Else %>

<% End if %>

<!--#include virtual=&quot;includes/topbar.inc&quot; -->
<table width=&quot;100%&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; align=&quot;left&quot; >
<tr>
<td width=&quot;17%&quot; valign=&quot;top&quot; >
<!--#include virtual=&quot;includes/sidebar.inc&quot; -->
</td>
<td width=&quot;80%&quot; valign=&quot;top&quot; >
<table width=&quot;80%&quot; align=&quot;left&quot; border=0 cellpadding=0 cellspacing=0>
<tr>
<td>
<form action=&quot;newaccount.asp&quot; method=&quot;post&quot; onSubmit=&quot;return checkrequired(this, <%=stepnum %>)&quot;>
<p> </p>
<p>
<input type=&quot;hidden&quot; name=&quot;step&quot; value=&quot;<%=stepnum %>&quot;>
<input type=&quot;hidden&quot; name=&quot;body&quot; value=&quot;<%=Body %>&quot;>
<input type=&quot;hidden&quot; name=&quot;senderemail&quot; value=&quot;<%=email %>&quot;>
<input type=&quot;hidden&quot; name=&quot;to&quot; value=&quot;jgisler@mediafamily.org&quot;>
<font size=&quot;4&quot;>
<%
Select case stepnum
CASE 1
%>
<font face=&quot;Arial&quot;><b>Billing and Account Information</b></font></font><br>
</p>
<p><font face=&quot;Arial&quot;> <font size=&quot;2&quot;>Name of Organization: <br>
<input type=&quot;text&quot; name=&quot;requiredOrganization&quot; size=&quot;50&quot; maxlength=&quot;200&quot; tabindex=&quot;1&quot;>
<span class=&quot;required&quot;> (Required)</span> <br>
Address: <br>
<input type=&quot;text&quot; name=&quot;requiredAddress1&quot; size=&quot;50&quot; maxlength=&quot;100&quot; tabindex=&quot;2&quot;>
<span class=&quot;required&quot;> (Required)</span> <br>
Address 2: <br>
<input type=&quot;text&quot; name=&quot;Address2&quot; size=&quot;50&quot; maxlength=&quot;100&quot; tabindex=&quot;3&quot;>
<br>
<br>
City:
<input type=&quot;text&quot; name=&quot;requiredCity&quot; size=&quot;25&quot; maxlength=&quot;50&quot; tabindex=&quot;4&quot;>
<span class=&quot;required&quot;> (Required)</span> <br>
<br>
State:
<select name=&quot;requiredState&quot; tabindex=&quot;5&quot;>
<option selected>Choose a state from below</option>
<option value=&quot;AL&quot;>Alabama</option>
<option value=&quot;AK&quot;>Alaska</option>
<option value=&quot;AZ&quot;>Arizona</option>
<option value=&quot;AR&quot;>Arkansas</option>
<option value=&quot;CA&quot;>California</option>
<option value=&quot;CO&quot;>Colorado</option>
<option value=&quot;CT&quot;>Connecticut</option>
<option value=&quot;DE&quot;>Delaware</option>
<option value=&quot;DC&quot;>Washington, D.C.</option>
<option value=&quot;FL&quot;>Florida</option>
<option value=&quot;GA&quot;>Georgia</option>
<option value=&quot;GU&quot;>Guam</option>
<option value=&quot;HI&quot;>Hawaii</option>
<option value=&quot;ID&quot;>Idaho</option>
<option value=&quot;IL&quot;>Illinois</option>
<option value=&quot;IN&quot;>Indiana</option>
<option value=&quot;IA&quot;>Iowa</option>
<option value=&quot;KS&quot;>Kansas</option>
<option value=&quot;KY&quot;>Kentucky</option>
<option value=&quot;LA&quot;>Louisiana</option>
<option value=&quot;ME&quot;>Maine</option>
<option value=&quot;MD&quot;>Maryland</option>
<option value=&quot;MA&quot;>Massachusetts</option>
<option value=&quot;MI&quot;>Michigan</option>
<option value=&quot;MN&quot;>Minnesota</option>
<option value=&quot;MS&quot;>Mississippi</option>
<option value=&quot;MO&quot;>Missouri</option>
<option value=&quot;MT&quot;>Montana</option>
<option value=&quot;NE&quot;>Nebraska</option>
<option value=&quot;NV&quot;>Nevada</option>
<option value=&quot;NH&quot;>New Hampshire</option>
<option value=&quot;NJ&quot;>New Jersey</option>
<option value=&quot;NM&quot;>New Mexico</option>
<option value=&quot;NY&quot;>New York</option>
<option value=&quot;NC&quot;>North Carolina</option>
<option value=&quot;ND&quot;>North Dakota</option>
<option value=&quot;OH&quot;>Ohio</option>
<option value=&quot;OK&quot;>Oklahoma</option>
<option value=&quot;OR&quot;>Oregon</option>
<option value=&quot;PA&quot;>Pennsylvania</option>
<option value=&quot;PR&quot;>Puerto Rico</option>
<option value=&quot;RI&quot;>Rhode Island</option>
<option value=&quot;SC&quot;>South Carolina</option>
<option value=&quot;SD&quot;>South Dakota</option>
<option value=&quot;TN&quot;>Tennessee</option>
<option value=&quot;TX&quot;>Texas</option>
<option value=&quot;UT&quot;>Utah</option>
<option value=&quot;VT&quot;>Vermont</option>
<option value=&quot;VA&quot;>Virginia</option>
<option value=&quot;VI&quot;>Virgin Islands</option>
<option value=&quot;WA&quot;>Washington</option>
<option value=&quot;WV&quot;>West Virginia</option>
<option value=&quot;WI&quot;>Wisconson</option>
<option value=&quot;WY&quot;>Wyoming</option>
</select>
<span class=&quot;required&quot;> (Required)</span>   Zip:
<input type=&quot;text&quot; name=&quot;Zip&quot; size=&quot;5&quot; maxlength=&quot;5&quot; tabindex=&quot;6&quot;>
<br>
<br>
Contact person:
<input type=&quot;text&quot; name=&quot;requiredContact&quot; size=&quot;20&quot; maxlength=&quot;45&quot; tabindex=&quot;7&quot;>
<span class=&quot;required&quot;> (Required)</span> <br>
<br>
Phone:
<input type=&quot;text&quot; name=&quot;requiredPhone&quot; size=&quot;12&quot; maxlength=&quot;12&quot; tabindex=&quot;8&quot;>
<span class=&quot;required&quot;> (Required)</span>   Fax:
<input type=&quot;text&quot; name=&quot;Fax&quot; size=&quot;12&quot; maxlength=&quot;12&quot; tabindex=&quot;9&quot;>
<br>
<br>
Email:
<input type=&quot;text&quot; name=&quot;requiredEmail&quot; size=&quot;30&quot; maxlength=&quot;50&quot; tabindex=&quot;10&quot;>
<span class=&quot;required&quot;> (Required) </span></font><br>
<br>
<font size=&quot;2&quot;>Password:
<input type=&quot;text&quot; name=&quot;requiredpassword&quot;>
<span class=&quot;required&quot;> (Required) </span><br>
<br>
Is your Billing & Shipping information the same?
<input type=&quot;radio&quot; name=&quot;requiredLocation&quot; value=&quot;1&quot; tabindex=&quot;11&quot;>
 Yes  
<input type=&quot;radio&quot; name=&quot;requiredLocation&quot; value=&quot;0&quot; tabindex=&quot;12&quot;>
 No <span class=&quot;required&quot;> (Required)</span> <br>
<br>
<input type=&quot;submit&quot; value=&quot;Next Step&quot; tabindex=&quot;13&quot;>
  
<input type=&quot;reset&quot; value=&quot;Clear Form&quot; tabindex=&quot;14&quot;>
</font></font></p>
<font size=&quot;2&quot;>
<%
case 2
%>
</font>
<p><font face=&quot;Arial&quot; size=&quot;2&quot;><b><font size=&quot;4&quot;>Shipping Information</font></b></font></p>
<p><font face=&quot;Arial&quot; size=&quot;2&quot;> Company: <br>
<input type=&quot;text&quot; name=&quot;LocationName&quot; size=&quot;50&quot; maxlength=&quot;100&quot; tabindex=&quot;1&quot;>
<br>
Address: <br>
<input type=&quot;text&quot; name=&quot;Address1&quot; size=&quot;50&quot; maxlength=&quot;100&quot; tabindex=&quot;2&quot;>
<br>
Address 2: <br>
<input type=&quot;text&quot; name=&quot;Address2&quot; size=&quot;50&quot; maxlength=&quot;100&quot; tabindex=&quot;3&quot;>
<br>
<br>
City:
<input type=&quot;text&quot; name=&quot;City&quot; value=&quot;<%=Request.Form(&quot;City&quot;) %>&quot; size=&quot;25&quot; maxlength=&quot;50&quot; tabindex=&quot;4&quot;>
<br>
<br>
State:
<select name=&quot;State&quot; tabindex=&quot;5&quot;>
<option value=&quot;<%=Request.Form(&quot;State&quot;) %>&quot; selected><%=Request.Form(&quot;State&quot;) %></option>
<option value=&quot;AL&quot;>Alabama</option>
<option value=&quot;AK&quot;>Alaska</option>
<option value=&quot;AZ&quot;>Arizona</option>
<option value=&quot;AR&quot;>Arkansas</option>
<option value=&quot;CA&quot;>California</option>
<option value=&quot;CO&quot;>Colorado</option>
<option value=&quot;CT&quot;>Connecticut</option>
<option value=&quot;DE&quot;>Delaware</option>
<option value=&quot;DC&quot;>Washington, D.C.</option>
<option value=&quot;FL&quot;>Florida</option>
<option value=&quot;GA&quot;>Georgia</option>
<option value=&quot;GU&quot;>Guam</option>
<option value=&quot;HI&quot;>Hawaii</option>
<option value=&quot;ID&quot;>Idaho</option>
<option value=&quot;IL&quot;>Illinois</option>
<option value=&quot;IN&quot;>Indiana</option>
<option value=&quot;IA&quot;>Iowa</option>
<option value=&quot;KS&quot;>Kansas</option>
<option value=&quot;KY&quot;>Kentucky</option>
<option value=&quot;LA&quot;>Louisiana</option>
<option value=&quot;ME&quot;>Maine</option>
<option value=&quot;MD&quot;>Maryland</option>
<option value=&quot;MA&quot;>Massachusetts</option>
<option value=&quot;MI&quot;>Michigan</option>
<option value=&quot;MN&quot;>Minnesota</option>
<option value=&quot;MS&quot;>Mississippi</option>
<option value=&quot;MO&quot;>Missouri</option>
<option value=&quot;MT&quot;>Montana</option>
<option value=&quot;NE&quot;>Nebraska</option>
<option value=&quot;NV&quot;>Nevada</option>
<option value=&quot;NH&quot;>New Hampshire</option>
<option value=&quot;NJ&quot;>New Jersey</option>
<option value=&quot;NM&quot;>New Mexico</option>
<option value=&quot;NY&quot;>New York</option>
<option value=&quot;NC&quot;>North Carolina</option>
<option value=&quot;ND&quot;>North Dakota</option>
<option value=&quot;OH&quot;>Ohio</option>
<option value=&quot;OK&quot;>Oklahoma</option>
<option value=&quot;OR&quot;>Oregon</option>
<option value=&quot;PA&quot;>Pennsylvania</option>
<option value=&quot;PR&quot;>Puerto Rico</option>
<option value=&quot;RI&quot;>Rhode Island</option>
<option value=&quot;SC&quot;>South Carolina</option>
<option value=&quot;SD&quot;>South Dakota</option>
<option value=&quot;TN&quot;>Tennessee</option>
<option value=&quot;TX&quot;>Texas</option>
<option value=&quot;UT&quot;>Utah</option>
<option value=&quot;VT&quot;>Vermont</option>
<option value=&quot;VA&quot;>Virginia</option>
<option value=&quot;VI&quot;>Virgin Islands</option>
<option value=&quot;WA&quot;>Washington</option>
<option value=&quot;WV&quot;>West Virginia</option>
<option value=&quot;WI&quot;>Wisconson</option>
<option value=&quot;WY&quot;>Wyoming</option>
</select>
  Zip:
<input type=&quot;text&quot; name=&quot;Zip&quot; size=&quot;5&quot; maxlength=&quot;5&quot; tabindex=&quot;6&quot;>
<br>
<br>
Contact person for this location:
<input type=&quot;text&quot; name=&quot;Contact&quot; value=&quot;<%=Request.Form(&quot;requiredContact&quot;) %>&quot; size=&quot;20&quot; maxlength=&quot;45&quot; tabindex=&quot;7&quot;>
<br>
</font><font size=&quot;2&quot;> <br>
<input type=&quot;submit&quot; value=&quot;Next Step&quot; tabindex=&quot;8&quot;>
  
<input type=&quot;reset&quot; value=&quot;Clear Form&quot; tabindex=&quot;9&quot;>
</font></p>
<font face=&quot;Arial&quot; size=&quot;2&quot;>
<%
CASE 3
%>
</font>
<p><font face=&quot;Arial&quot; size=&quot;2&quot;>Do you have any additional information?<br>
<textarea cols=&quot;50&quot; rows=&quot;3&quot; name=&quot;DateTime&quot; wrap=&quot;soft&quot; tabindex=&quot;1&quot;></textarea>
<br>
<br>
Do you have any questions?<br>
<Textarea rows=&quot;3&quot; cols=&quot;50&quot; name=&quot;Issues&quot; wrap=&quot;soft&quot; tabindex=&quot;2&quot;></textarea>
<br>
<br>
<input type=&quot;submit&quot; value=&quot;Next Step&quot; tabindex=&quot;13&quot;>
  
<input type=&quot;reset&quot; value=&quot;Clear Form&quot; tabindex=&quot;14&quot;>
</font></p>
<font face=&quot;Arial&quot; size=&quot;2&quot;>
<%
CASE 4
%>
</font>
<p><font face=&quot;Arial&quot; size=&quot;2&quot;> <b>Are you Tax Exempt</b>
<input type=&quot;radio&quot; name=&quot;public&quot; value=&quot;Yes&quot; tabindex=&quot;1&quot;>
Yes  
<input type=&quot;radio&quot; name=&quot;public&quot; value=&quot;No&quot; checked tabindex=&quot;2&quot;>
No </font><font face=&quot;Arial&quot;><font size=&quot;2&quot;> <span class=&quot;required&quot;>
(Required)</span> </font></font><font face=&quot;Arial&quot; size=&quot;2&quot;><br>
</font>
<blockquote> <font face=&quot;Arial&quot; size=&quot;2&quot;> If yes enter number:
<input type=&quot;text&quot; name=&quot;taxidnumber&quot;>
<br>
<br>
<input type=&quot;submit&quot; value=&quot;Final Review&quot; tabindex=&quot;6&quot;>
  
<input type=&quot;reset&quot; value=&quot;Clear Form&quot; tabindex=&quot;7&quot;>
<%
CASE 5
%>
</font></blockquote>
<p><font face=&quot;Arial&quot; size=&quot;2&quot;> Here's the information you've given
us so far. If anything is incorrect, please correct it. If you
wish to cancel, please click on any of the links at the top or
bottom of the page: <br>
<textarea name=&quot;correctbody&quot; rows=&quot;10&quot; cols=&quot;50&quot; wrap=&quot;soft&quot; tabindex=&quot;1&quot;><%=body %></textarea>
<br>
</font><font face=&quot;Arial&quot;><br>
<input type=&quot;submit&quot; value=&quot;Finish&quot; tabindex=&quot;2&quot;>
</font></p>
<font face=&quot;Arial&quot;>
<%
CASE ELSE
%>
</font>
<p style=&quot;font-size: 18pt;&quot;><font face=&quot;Arial&quot;>Thank you for creating
your account.</font></p>
<%

Set mail = Server.CreateObject(&quot;CDONTS.NewMail&quot;)

mail.From = Request.Form(&quot;senderemail&quot;)

mail.To = &quot;jgisler@mediafamily.org&quot;
mail.Subject = &quot;New Account&quot;
mail.Body = Request.Form(&quot;correctbody&quot;)
'mail.Host = Request(mail.sunserver.com)


mail.Send
Set mail = Nothing
if err.number <> 0 then
response.write(&quot;<br>Error n° &quot; & err.number - vbobjecterror & &quot; = &quot; & err.description)
%>
<p><font face=&quot;Arial&quot; size=&quot;2&quot;>Your message has not been sent. Please
contact our webmaster at <a href=&quot;mailto:webmaster@cadan.com&quot;>webmaster@cadan.com</a>
and let him know what error message you received.</font></p>
<font face=&quot;Arial&quot; size=&quot;2&quot;>
<%
else
%>
</font>
<p> <font face=&quot;Arial&quot; size=&quot;2&quot;><br>
Your request has been sent. Please note that It will take up to
48 hours to complete registration. If you have any questions in
the meantime, please contact us at 651-456-5760</font> </p>
<%
end if

End Select
%>
</form>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan=&quot;2&quot; valign=&quot;top&quot;>
<!--#include virtual=&quot;includes/bottom.inc&quot; -->
</td>
</tr>
</table>


 
Is there a reason you posted this huge code 6 ( at last count) times????


[thumbsdown]
 
I am not sure. I only pressed the submit button 1 time. ??
 
Then it must have been a magic key since it was able to change the subject on some of them from
ASP & CDONTS
to
ASP & CDONTS FORM Help


 
jgisler,

If you're getting your &quot;Your request has been sent...&quot; message, then try checking your mailroot folder on your webserver to see if your emails are still in the queue, or in badmail or elsewhere.

 
Hi jemminger,

I had a similar problem, and all the emails are in the queue. How do I get them send? How do I conigure the smtp service of iis? Thanx,

Roberti
 
Hi Roberti,

I'm not too sure about actually configuring SMTP - it's been set up for me on our servers by someone else. Typically the email will sit in &quot;queue&quot; for up to 30 seconds or so before sending for me...if there's a problem sending then they'll go to &quot;badmail&quot; or &quot;drop&quot;. If they never leave &quot;queue&quot;, make sure the SMTP service is started. Perhaps look through the SMTP service properties through IIS Administrator Console to see if anything looks wrong...

hope this helps!
=========================================================
if (!succeed) try();
-jeff
 
Hello jemminger,

The messages never leave the queue, and the smtp server is started, so it must be in the configuration of the smtp server, but I can't find whats wrong.

But thanks anyway for the response

Roberti.
 
There are two solutions to this problem. Te first is:
If you have an smtp server, make sure you have set the default SMTP server in your IIS settings.
If you don't have an SMTP server set up, the simplest solution is to open up something like outlook express and make a default account with just an outgoing address.
Either way, your machine needs to know where the mail is supposed to go, these are the two easiest ways to specify a forwarding mail server.
-Tarwn ------------ My Little Dictionary ---------
Extreme Programming - (1)Trying to code before my second cup of coffee. (2) While(1){ Ctrl+C; Ctrl+V; }
Corrections - Comments made out of a desire to be helpful and repay the millions given to me :)
 
Hi All
I would like to get a microsoft certfication. any one can u please give me suggestions as how long will it take and what should i prepare for exam

thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top