Forum FAQForum FAQSearchSearch MemberlistMemberlist Forum ignore listForum ignore list RegisterRegister ProfileProfile Log in to check your private messagesLog in to check your private messages Log inLog in
ASP mail forma

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    mi3dot.org Forum Index -> Server-side
View previous topic :: View next topic  
Author Message
djankey



Joined: 22 Nov 2006
Posts: 128
Location: zg

PostPosted: 14.01.2007 20:14    Post subject: ASP mail forma Add user to your forum ignore list Reply with quote

Pozdrav ljudi! vuk
Trebala bi mi asp mail forma koja koristi ASPEmail ili CDOSYS
Da ima rubrike: ime, e-mail posiljatelja i poruka...
Back to top
View user's profile Send private message Visit poster's website
tubak



Joined: 14 Mar 2005
Posts: 133
Location: Istra

PostPosted: 14.01.2007 20:40    Post subject: Add user to your forum ignore list Reply with quote

http://www.w3schools.com/asp/asp_send_email.asp
Back to top
View user's profile Send private message Visit poster's website
snyder



Joined: 21 Dec 2005
Posts: 57
Location: Zagreb

PostPosted: 15.01.2007 11:22    Post subject: Add user to your forum ignore list Reply with quote

ovo ti je za asp-javascript, onaj link gore je vb, sad koji ti treba ti koristi Smile
naravno, ove stvari kome ide, subjekt i sadrzaj zamijeni sa Request.Form(polje)
Code:
// kreiranje mail objekta
od_koga_ide = "me@me.com";
kome_ide = "kome.ide@me.com";
subjekt = "ocito :)";
sadrzaj = "ja šaljem mail!!";
MejlObjekt = Server.CreateObject("CDONTS.NewMail");
MejlObjekt.MailFormat = 0;
MejlObjekt.BodyFormat = 0;
MejlObjekt.From = od_koga_ide;
MejlObjekt.To = kome_ide;
MejlObjekt.Subject = subjekt;
MejlObjekt.Body = (sadrzaj);
// slanje maila
MejlObjekt.Send();
MejlObjekt = null;
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    mi3dot.org Forum Index -> Server-side All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group