/    Sign up×
Community /Pin to ProfileBookmark

How to receive form in email and auto CC to sender the same form

How to receive form in email and auto CC to sender the same form and also to any other email address entred in the form.

Please Help!

to post a comment
JavaScript

3 Comments(s)

Copy linkTweet thisAlerts:
@A1ien51Sep 04.2008 — Well with JavaScript you only have the ability to use mailto: which requires an email client on the users machine. If you do not want to have the user have to use a mail client, than you need to look into a serverside solution.

Eric
Copy linkTweet thisAlerts:
@harisghoriauthorSep 04.2008 — Well with JavaScript you only have the ability to use mailto: which requires an email client on the users machine. If you do not want to have the user have to use a mail client, than you need to look into a serverside solution.

Eric[/QUOTE]



Thanks Eric,



Do you happen to know how to configure a server side ASP pagewritten in VB Script. I have obtained the script from Brianjar.com and unable to configure it, if you could help will be great.
Copy linkTweet thisAlerts:
@millseyno1Sep 04.2008 — Try something like below

<%

Set myMailTool=CreateObject("CDO.Message")

myMailTool.Subject="Sending an email"

myMailTool.From="[email protected]"

myMailTool.To="[email protected]"

myMailTool.TextBody="Your specified message."

myMailTool.Send

set myMailTool=nothing

%>
×

Success!

Help @harisghori spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.25,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...