|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| ||||||||||||||||||||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
I want to make a form which I later send to a sertain adress. I suspect something with mailto:" but cant figure out how to get all the information with me.
(PS. THX to Omar with the first one.. I will dive in to IT ) |
|
#2
|
|||
|
|||
|
a normal Form?!
if Yes: Code:
<form name="MyForm" method="post" action="mailto:mail@domain.ext" enctype="text/plain"> Wanna Add a Subject? <form name="MyForm" method="post" action="mailto:mail@domain.ext?subject=Pre Compiled Subject." enctype="text/plain"> if u need a Script in Asp the process is different, u can use many Objects ( CDONTS, ASPmail, ..... ) C ya |
|
#3
|
|||
|
|||
|
A VB textboxes
I mean VisualBasic text boxes where I can fill in information then I add a send button which I can send the information that I haved typed
|
|
#4
|
|||
|
|||
|
for visual basic, just create a form with text boxes and then use CDO (collaborative data objects) to sent the mail. Add the CDONTS.DLL as a refernece in your project and use some code like this to send it:
dim objMail as CDONTS.NewMail objMail.To = "me@somewhere.com" objMail.From = "me@righthere.com" objMail.Subject = "Test EMail" objMail.Body = "This is the body of the email" 'Send the email obMail.Send set objMail = nothing |
|
#5
|
|||
|
|||
|
Hello,
The following code we found in your site.We wanted to know the major difference in using the CDONTS and Microsoft Outlook for sending the emails by VB code.Is the following code is to send a form in a email, if not please send us the code in order to send a form through email(VB code). Hoping the reply soon. Thanking you, PrashanthBR Quote:
|
|
#6
|
|||
|
|||
|
Reply for code
Hello,
We have found the following code.Is that this code is to send a form through mail in VB.If not please kindly send us the code to send a form through email. Please send the repley as soon as possible. Thanking u, PrashanthBR Quote:
|
![]() |
| Viewing: Dev Articles Community Forums > Programming > ASP Development > Form and mail |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|