Receive SMS
I am looking to incorporate SMS messages into a web page, so if people send a message to me, it shows up immediately on-screen. how to do this?
View RepliesI am looking to incorporate SMS messages into a web page, so if people send a message to me, it shows up immediately on-screen. how to do this?
View RepliesI was just wondering what the requirements are on my computer system if I want to be able to receive e-mails (to my own mail server and not through the mail server of my ISP). I already have a functioning SMTP-server, but I guess that only works for outgoing mails, or is there maybe a way I can send mails to this SMTP-server?
Do I need a fixed IP-address? Do I need so kind of special software like Win 2003 server or maybe Exchange Server? Do I need my own domain name? Anything else I need to bear in mind if I want to have my own incoming mail server?
Is it possible for IIS to send some sort of notification when an ASP
error occurs on a page?
I can see them in the web logs, but I was wondering if there was a way
to receive an email or some other alert
I thought about using CDO Send Mail, but this object is often what
cause the error in the first place.
I am looking for a way to read & download my e-mails from my pop3 account from another server by using ASP(vb)
If you know anything about this subject please feel free to let me know. I learn how send but not receive.
After I run my cdon't.asp file, I saw a successful message saying "mail sent". Then, I went to open my inbox but find no mail. So, I went back to c:inetpubmailroot, I saw a folder called queue and saw that mail there. How do I solve this problem?
View Replies View RelatedI have a form (it's a .asp page) that people fill out to receive a free brochure. The form results are sent to a database (mdb).This is what I want to do. I want to be notified by email everytime someone fills out the form. I also want to be able to use an auto-responder and send an automatic message to the person that filled out the form.
In the future, I would like to be able to have the people be automatically signed up for the newsletter (with the option of not be added to the newsletter).
Does any one know if asppop3 allows you to insert mail directly into a database table? I think i know of a way but before I do, I would like to know if any one else knows?
View Replies View RelatedI have a html form. When it is submitted, an asp page retrives all the data and sends the data to my email id. It is working well when the form data is in English. When user fill in the form using Thai language and submit, as sends some junk. How can i fix it?
View Replies View RelatedI have application form in ASP and I�m using a code
which I have use many times before and when I fill out
the forms it doesn't return any errors so it works perfect I guess.
Anyway... when I download the database (Access mdb)
back to my C: and open it a new line of record has been
created but all the fields are empty and no data.
Does anyone know what can be wrong or what are the
possibilities?
I have been writing a photoalbum in ASP and I am trying to receive an undetermined amount of files.
A more detailed explanation:
The client side (Javascript) generates a new file upload box as soon as the file in the first box is selected...the name of the file upload boxes is bestand[] so that the input is received in an array.
Now I am trying to receive all the files with ASP and store them on the server....
I'm looking for a simple e-mail form processing for my website. I want users to be able to add their e-mail in a simple text field with a submit button so I can receive it by e-mail. I've looked on the Internet and it seems so complicated.
View Replies View RelatedReceive xml as input stream through asp and parse it. I would be getting a xml file and i need to recive it through asp and parse it thus extracting its childnodes.
View Replies View RelatedI have the following code in my my form:
Sub frmSubButton1_onclick
Dim ObjMail
'Create Mail Object
Set objMail = Server.CreateObject("CDONTS.NewMail")
'Populate variables from form value
strAuthorEmail = document.getElementById("OpenBy").value
strRecipientEmail = "tech@lsamedicaidspecialists.com"
strCC = document.getElementById("OpenBy").value
strBody = document.getElementById("IssueDescription").value
With ObjMail
.From = strAuthorEmail
.To = strRecipientEmail
.CC = strCC
.Subject = document.getElementById("IssueCategory").value
.Body = strBody
End With
ObjMail.Send
I am erroring out on this line -
Set objMail = Server.CreateObject("CDONTS.NewMail")
The error I receive is Object 'Server' Required. I am running IIS 5.x and that is why I am using CDONTS.
I''ve got a problem with "dim". I want to receive a variable send from a formular with method GET Why it doesn't work??
<body>
<%
dim name
dim vorname
....
name = request.QueryString("name")
vorname = request.QueryString("vorname")
....
response.write ("name" )
response.write ("vorname" )
....
response.end
%>
</body>