[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.8

CDONTS ingnores a e-mail address

Asked by Davidjevans in Active Server Pages (ASP), Scripting Languages

Tags: CCONTS, ASP

Greetings Experts;

I have a CDONTS code that is ignoring the e-mail address displayed at lines 10-11 on the attached code. I have placed it in different positions of the different variables with no change (lines 4-15). I am suspecting the format of the e-mail with the dash (-) might be the culprit but cannot find any documentation to support this theory. Any ideas?

Regards

Dave
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
Dim objCDOMail      'Holds the CDONTS NewMail Object
Dim strBody1 
'Set email to defined group for email 
IF scte_segment = "Nationals" THEN
	semail_group = "ConsultingManagersMajors_Nationals@concur.com"
	end if
IF scte_segment = "Primary/Globals" THEN
	semail_group = "ConsultingManagersPrimaryGlobal@concur.com"
	end if
IF scte_segment = "Corporate Edition" THEN
	semail_group = "ConsultingManagers-CorporateEdition@concur.com"
	end if
IF scte_segment = "EMEA" THEN
	semail_group = "EMEAImplementationManagement@concur.com"
END IF 

strBody1 =   "<body> " _
    		& "	<span class='pageheader1'><span class='style10'>Concur Travel &amp; Concur Implementation Architect Responses</span>  " _
    		& "	" _
			& "<p class='pageheader1'>The summary of responses for " & sCompany_name &  " may be navigating to the link below via your web browser :</span></p> " _
			& " <p class='sectionheader'>http://operationsdevelopment.gelco.com/backoffice/config_mgr/cte_client_index.asp</p> " _
			& "<blockquote> " _
			& "   <p class='large'>Company Name:<span class='success'> " & sCompany_name & " </span></p>" _
			& "   <p class='large'>Started:<span class='success'> " & sdate_time_your_info & " </span></p>" _ 
			& "   <p class='large'>Completed:<span class='success'> " & sclient_complete & " </span></p>"  
sch = "http://schemas.microsoft.com/cdo/configuration/" 
    Set cdoConfig = Server.CreateObject("CDO.Configuration") 
    Const cdoBasic = 1 
    cdoConfig.Fields.Item(sch & "smtpserver") = "172.21.129.51" 
    cdoConfig.Fields.Item(sch & "sendusing") = 2     
    cdoConfig.fields.update 
    Set cdoMessage = Server.CreateObject("CDO.Message") 
    Set cdoMessage.Configuration = cdoConfig  
cdoMessage.From = "Concur.Implementation.Architect@concur.com"
cdoMessage.To = semail_group
cdoMessage.Cc = "dave.evans@concur.com"
cdoMessage.Bcc = ""
cdoMessage.Subject = sCompany_name & " has submitted Concur Implementation Architect Responses "
'Set the e-mail body format (0=HTML 1=Text)
'cdoMessage.BodyFormat = 0
'Set the mail format (0=MIME 1=Text)
'cdoMessage.MailFormat = 0
'Set the main body of the e-mail
cdoMessage.HTMLBody = strBody1
'Send the e-mail
cdoMessage.Send 
'Close the server object
Set cdoMessage = Nothing 
Set cdoConfig = Nothing  

'REDIRECT must execute after all other code within the "form submit" conditional statement.
	redirect_1 = "notification_confirm.asp"
	Redirect_1 = Redirect_1 & "?company_name =" & sCompany_Name
	Redirect_1 = Redirect_1 & "&" & request.Form
	Response.Redirect(Redirect_1) 
END IF 
'SETTING TEXT VARIABLES BASED ON PREVIOUS ANSWERS:
'All previous answers are available in the query string. 
'In this example, "change_type" was the "name" value of the imput from a previous form. "Delete", "change", and "add" were the 
'values of that input. These variables can be used in dynamic text on this page. 
%>
[+][-]11/05/09 12:50 PM, ID: 25753866Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: Active Server Pages (ASP), Scripting Languages
Tags: CCONTS, ASP
Sign Up Now!
Solution Provided By: Davidjevans
Participating Experts: 1
Solution Grade: A
 
[+][-]11/03/09 08:53 PM, ID: 25736498Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/04/09 07:13 AM, ID: 25740098Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]11/04/09 11:55 AM, ID: 25743223Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/05/09 01:00 PM, ID: 25753975Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]11/05/09 01:02 PM, ID: 25753988Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-92 - Hierarchy / EE_QW_3_20080625