Click to See Complete Forum and Search --> : microsoft outlook express


jilshi
02-20-2004, 11:43 PM
i'm using web browser microsoft internet explorer to send page to e-mail. i click file, send, and choose send page by e-mail. then it will automatically link to microsoft outlook express. i can send page to recipient.

here is my requirement,
how can i choose many pages to send simultaneously and send the page to different people. each person will get diiferent page.

any suggestion to solve this problem?

buntine
02-21-2004, 12:29 AM
This quite possible, though, your going to have to write a program to achieve this.
Internet Explorer does not have features like this.

jilshi
02-23-2004, 07:36 PM
i'm using jsp to create my web site. if use jsp, it send text or html to email. yahoo cannot receive html. what should i do?

PeOfEo
02-23-2004, 07:38 PM
Originally posted by jilshi
i'm using jsp to create my web site. if use jsp, it send text or html to email. yahoo cannot receive html. what should i do? send it in html, if html cannot be read it will be read as text. I mean I used to get html emails all the time when I used webmail and they just broke away into
>Hi
>how are you doing
>I like dirt
>it is fun.
sort of junk.

jilshi
02-23-2004, 07:58 PM
i need to send from my page to email. not typing in email and send. i have to send more than 1000 records and each record has different data. is there any solution?

PeOfEo
02-23-2004, 08:34 PM
yes. You said jsp, just populate a string with jsp and send it. You can send it in html form with <br> on each line, and if the mail client or server the user is on does not support html it will break away into text form.

jilshi
02-23-2004, 10:21 PM
can u explain further about just populate a string with jsp and send it.
can u guide me step by step?

PeOfEo
02-23-2004, 10:36 PM
Lol, I do not know jsp. I know some java
But I mean it is going to do something like
string str;
sql select statement = string
email code
email body = string;
This forum is not a big community for jsp but some of the others here might be able to give you some actual code. I am an asp.net man myself.

jilshi
02-23-2004, 10:40 PM
ok, if use java, do u have any idea?

PeOfEo
02-23-2004, 10:41 PM
Originally posted by jilshi
ok, if use java, do u have any idea? I use java, I am taking an ap cource in it. But I do not use jsp, I do not know how to send emails in jsp, and I do not know the exact syntax of an sql statement in jsp. It is going to be select this from this where this = this though.