473,398 Members | 2,812 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,398 software developers and data experts.

Email Challenge...

OK, here is what I am attempting.

I have an .asp page on our company intranet in which the user can key some
referral information. Upon submit, the data is transferred to an SQL
database and the user receives a confirmation of this submission. One of the
fields that the employee selects is the sales rep to receive the referral.

I would like to be able to send the rep an email with the information
entered by the employee so they can contact the client. I am using Frontpage
2002 and I am aware that this process is not available within Frontpage but I
believe it can be coded manually but I can't seem to find a good resource to
assist me in this process. Our web-server is running Windows Server 2003.

I believe this can be accomplished and I hope to get some direction. Any
help would be appreciated.

Thanks.
Sep 1 '06 #1
3 1987
=?Utf-8?B?S2VuIEQu?= wrote on 01 sep 2006 in
microsoft.public.inetserver.asp.general:
OK, here is what I am attempting.

I have an .asp page on our company intranet in which the user can key
some referral information. Upon submit, the data is transferred to an
SQL database and the user receives a confirmation of this submission.
One of the fields that the employee selects is the sales rep to
receive the referral.

I would like to be able to send the rep an email with the information
entered by the employee so they can contact the client. I am using
Frontpage 2002 and I am aware that this process is not available
within Frontpage but I believe it can be coded manually but I can't
seem to find a good resource to assist me in this process. Our
web-server is running Windows Server 2003.

I believe this can be accomplished and I hope to get some direction.
Any help would be appreciated.

Thanks.
Depending on the asp-email system you use it is just adding the "rep"'s
emailadress as a BCC

Using Jmail it is:

theRep = ""re*@yourcompany.com" ' [or the SQL execution equivalent]

JMail.AddRecipientBCC theRep

CDO or CDONT will use a similat command, methinks.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Sep 1 '06 #2
OK, not being a programmer by trade, I need a bit more information.

Say I use code something like this:

Set myMail=CreateObject("CDO.Message")
myMail.Subject="Something Here"
myMail.From="sy******@domain.com"
myMail.To="re*@domain.com"
myMail.TextBody="This is the information."
myMail.Send
set myMail=nothing

Where is it placed in the page and how is it called? Should it be in the
asp page that the employee enters data or generated when the confirmation
page loads?

Sorry about the confusion.

"Evertjan." wrote:
=?Utf-8?B?S2VuIEQu?= wrote on 01 sep 2006 in
microsoft.public.inetserver.asp.general:
OK, here is what I am attempting.

I have an .asp page on our company intranet in which the user can key
some referral information. Upon submit, the data is transferred to an
SQL database and the user receives a confirmation of this submission.
One of the fields that the employee selects is the sales rep to
receive the referral.

I would like to be able to send the rep an email with the information
entered by the employee so they can contact the client. I am using
Frontpage 2002 and I am aware that this process is not available
within Frontpage but I believe it can be coded manually but I can't
seem to find a good resource to assist me in this process. Our
web-server is running Windows Server 2003.

I believe this can be accomplished and I hope to get some direction.
Any help would be appreciated.

Thanks.

Depending on the asp-email system you use it is just adding the "rep"'s
emailadress as a BCC

Using Jmail it is:

theRep = ""re*@yourcompany.com" ' [or the SQL execution equivalent]

JMail.AddRecipientBCC theRep

CDO or CDONT will use a similat command, methinks.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Sep 1 '06 #3
=?Utf-8?B?S2VuIEQu?= wrote on 01 sep 2006 in
microsoft.public.inetserver.asp.general:
"Evertjan." wrote:
[..]
>>
Depending on the asp-email system you use it is just adding the
"rep"'s emailadress as a BCC

Using Jmail it is:

theRep = ""re*@yourcompany.com" ' [or the SQL execution equivalent]

JMail.AddRecipientBCC theRep

CDO or CDONT will use a similar command, methinks.
[please do not toppost on usenet]
OK, not being a programmer by trade, I need a bit more information.

Say I use code something like this:

Set myMail=CreateObject("CDO.Message")
myMail.Subject="Something Here"
myMail.From="sy******@domain.com"
myMail.To="re*@domain.com"
myMail.TextBody="This is the information."
myMail.Send
set myMail=nothing
That was not what I suggested, I suggested to send rep a blind copy of
the mail the programme sends to te user.
Where is it placed in the page and how is it called? Should it be in
the asp page that the employee enters data or generated when the
confirmation page loads?

Sorry about the confusion.
The does and don'ts of CDO and CDONT are not my specialty, as I wrote.

However it seems you know nothing about planning an ASP based interactive
system, so I would suggest to you, as it seems a commercial undertaking,
to hire a programmer or the learn far more and become an ASP programmer
yourself in a few months.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Sep 1 '06 #4

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

Similar topics

25
by: Dynamo | last post by:
Hi The following script was taken from John Coggeshall's (PHP consultant) in his article on Zends site at http://www.zend.com/zend/spotlight/ev12apr.php // Get the email address to validate...
42
by: Frank Buss | last post by:
I've setup a challenge, mainly for C++, Java and Lisp, but every other language is welcome: http://www.frank-buss.de/challenge/index.html There is nothing to win, but I hope there will be some...
0
by: Richard Jones | last post by:
The date for the second PyWeek challenge has been set: Sunday 26th March to Sunday 2nd April (00:00UTC to 00:00UTC). The PyWeek challenge invites entrants to write a game in one week from...
0
by: richard | last post by:
The date for the second PyWeek challenge has been set: Sunday 26th March to Sunday 2nd April (00:00UTC to 00:00UTC). The PyWeek challenge invites entrants to write a game in one week from...
11
by: CMM | last post by:
First let me say that maybe I'm having a "duh" moment and perhaps I'm missing something... but it seems to me that no one thing in the System.Collections namespace (even in .NET 2.0) even comes...
78
by: wkehowski | last post by:
The python code below generates a cartesian product subject to any logical combination of wildcard exclusions. For example, suppose I want to generate a cartesian product S^n, n>=3, of that...
2
by: donovan | last post by:
OK, so I know that there has been a lot of discussion on this topic, but none of the answers have been satisfactory. Therefore there seems to be only one thing to do: issue a challenge to all of...
3
by: Thierry | last post by:
For those interested in <b>programming riddles</b>, I would like to announce a new programming challenge I'm just launching at http://software.challenge.googlepages.com This challenge is in its...
0
by: Richard Jones | last post by:
The fifth PyWeek is only a month away. Come along and join the fun: write a video game in a week! There's some really interesting new libraries that have popped up recently. Have a gander on the...
80
by: jacob navia | last post by:
Several people in this group argue that standard C is not portable since there are no compilers for it, etc. I propose this program in Standard C, that I have compiled in several OSes to test if...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.