Go Back   Armenian Knowledge Base > Technical sections > Webmaster Zone > Web Development

Reply
 
Thread Tools

E-Mail from HTML
Old 08.10.2002, 18:32   #1
Младенец
 
Join Date: 10 2002
Location: Yerevan
Posts: 7
Rep Power: 0
Question E-Mail from HTML

kak poslat' E-Mail iz HTML file...
Mojno cherez JavaScript...

Old 08.10.2002, 19:00   #2
Студент
 
Join Date: 03 2002
Location: [ Surrealistical World ]
Posts: 312
Rep Power: 0
Post

[no words]
__________________
::Against the crowd.

Old 08.10.2002, 21:48   #3
Web developer
 
Aram Ghazanchyan's Avatar
 
Join Date: 09 2002
Location: Yerevan
Age: 44
Posts: 896
Rep Power: 0
Post

erevi miayn mijoc@
<a href="mailto:[youraddress]@[yourhost].com">send mail</a>

Old 08.10.2002, 22:06   #4
Младенец
 
Join Date: 10 2002
Location: Yerevan
Posts: 7
Rep Power: 0
Post

voch te HTML-i vra MailTo: href-ov link dnem , ajl TextBox - i value-n Mailov uxarkem mekin(cankali a aranc USER-i imanalu)

Old 08.10.2002, 22:33   #5
Дошкольник
 
Join Date: 07 2002
Location: Union of United Death Workers
Age: 36
Posts: 74
Rep Power: 0
Post

Nu i nu!
nechego skazat!
__________________
After all we are all Alike!

Old 08.10.2002, 23:52   #6
Студент
 
Join Date: 01 2002
Location: Yerevan, Armenia
Age: 45
Posts: 282
Rep Power: 0
Post

2 sartik

mojesh poprobovat' zapisat' ASP kod uzaya komponentu CDONETS..
prochitai stayu v MSDN-e...tam est' sample

vot nazvanie stat'i - "HOWTO: Use CDONTS to Collect and Mail Information From a User"

s pomoschyu html ili JScritp or VBScript naskol'ko ya znayu nikak ne viidet.

Sample:
Code:
Set myCDONTSMail = CreateObject(&quot;CDONTS.NewMail&quot;)
      myCDONTSMail.Send strFrom,strTo,strSubject,strMessage,lngImportance
      Set myCDONTSMail  = Nothing
      Write &quot;Mail has been sent.&quot;
__________________
Сколько времени и сил должен потратить мужчина,
Чтобы воспользоваться минутной слабостью женщины

Old 09.10.2002, 01:36   #7
Волк, просто волк...
 
_ WOLF _'s Avatar
 
Join Date: 07 2002
Location: /dev/null
Age: 80
Posts: 250
Rep Power: 0
Post

Miayn HTML-ov dzev chka!!
Make Mail Client (Outlook, Bat, Netscape) a bacelu, izur mi tanjvi.

pordzi ASP, PHP, Perl kam etc...
__________________
00000000h: 41 72 61 6D 20 4D 6B 68 69 74 61 72 79 61 6E;

Old 09.10.2002, 05:23   #8
¡no pasaran!
 
dolphin's Avatar
 
Join Date: 03 2002
Location: localhost
Age: 43
Posts: 540
Rep Power: 5
Lightbulb

гмм... есть тут один способ, и он будет работать на M$ IE / Outlook Express прямо из HTML формы почти без напряга (только 1 message box):

Code:
<form action=&quot;mailto:[email protected]?subject=webpage&quot; method=&quot;post&quot; enctype=&quot;text/plain&quot;>

<textarea name=message>



</textarea>

<input type=&quot;submit&quot; value=&quot;Send&quot;>

</form>
__________________
[ que fors aus ne le sot riens nee ]

Old 09.10.2002, 13:33   #9
Web developer
 
Aram Ghazanchyan's Avatar
 
Join Date: 09 2002
Location: Yerevan
Age: 44
Posts: 896
Rep Power: 0
Post

Mozhno prosto tak zhe napisat
<a href="mailto:[email protected]?subject=[YourSubject]&body=[yourbody]"

Old 09.10.2002, 15:30   #10
¡no pasaran!
 
dolphin's Avatar
 
Join Date: 03 2002
Location: localhost
Age: 43
Posts: 540
Rep Power: 5
Post

Quote:
Originally posted by Aram Ghazanchyan:
Mozhno prosto tak zhe napisat
<a href="mailto:[email protected]?subject=[YourSubject]&body=[yourbody]"
ну и как-же этот твой [yourbody] ввести?

а так получается форма, куда можно вводить сообшение.
__________________
[ que fors aus ne le sot riens nee ]

Old 09.10.2002, 18:26   #11
Web developer
 
Aram Ghazanchyan's Avatar
 
Join Date: 09 2002
Location: Yerevan
Age: 44
Posts: 896
Rep Power: 0
Post

2 Dolphin
ches karogh buttoni vra onClick-ov url kazmel u miacnel
Code:
function aa(){
  myVar = &quot;mailto:[email protected]&quot; + document.form.name.value;
  return myVar;
}

<input type=&quot;Button&quot; onClick=&quot;javascript:aa();&quot;>
Es tipi ban ches karogh anel???

Old 09.10.2002, 18:37   #12
Младенец
 
Join Date: 10 2002
Location: Yerevan
Posts: 7
Rep Power: 0
Post

ASP - ov karam grem... es dra masnaget em... indz maqur HTML/JavaScript a petq...

Old 09.10.2002, 20:12   #13
Web developer
 
Aram Ghazanchyan's Avatar
 
Join Date: 09 2002
Location: Yerevan
Age: 44
Posts: 896
Rep Power: 0
Post

De eta - greci.

Old 09.10.2002, 20:17   #14
Младенец
 
Join Date: 07 2002
Location: YEREVAN
Posts: 12
Rep Power: 0
Arrow

Code:
 <html>

<head>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=windows-1252&quot;>
<meta http-equiv=&quot;Content-Language&quot; content=&quot;en-us&quot;>
<title>BLEST</title>
</head>

<body>

<form action=&quot;mailto:[email protected]&quot; method=&quot;POST&quot; enctype=&quot;text/plain&quot;>
  <dl>
    <dd><textarea name=&quot;Comments&quot; rows=&quot;5&quot; cols=&quot;42&quot;></textarea></dd>
  </dl>
  <p><input type=&quot;submit&quot; value=&quot;Send&quot;> </p>
</form>

</body>

</html>
SENC VONCVOR NORMALA PORCI

Old 09.10.2002, 21:39   #15
Младенец
 
Join Date: 10 2002
Location: Yerevan
Posts: 7
Rep Power: 0
Post

Vsem Spasibo... vse zdelano
Reply




Реклама:
реклама
Buy text link .

All times are GMT. The time now is 08:48.
Top

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.