Home All Groups Group Topic Archive Search About
Author
15 Mar 2006 2:27 AM
VB Newbie
good day pros,

i would like to make a sample program that will act as a report service...

if someone sends a request via email the system will receive the mail and
sends back a respond with an attached pdf report file from a report server
depending on the parameter given on the subject line from the sender or
requester..

what sould i use for this mail service?  should i use pop/smpt
mail client? or are there any other way?

i would like to use vb6 or vb.net 2003 as frontend.

thanks in advance,

VB Newbie

Author
15 Mar 2006 3:46 AM
Terry Olsen
I've done something like this in the past. I set up a generic SMTP server
that accepted incoming emails. It did not route these to a mailbox, but put
them in a specified directory. My app watched the directory for these ".eml"
files to be created (or use a timer to check periodically).  Parse the files
for return email address and subject line. Use the VB SmtpMail class for
sending the response back.

Show quoteHide quote
"VB Newbie" <alx***@yahoo.co.uk> wrote in message
news:e7DH8k9RGHA.4384@tk2msftngp13.phx.gbl...
> good day pros,
>
> i would like to make a sample program that will act as a report service...
>
> if someone sends a request via email the system will receive the mail and
> sends back a respond with an attached pdf report file from a report server
> depending on the parameter given on the subject line from the sender or
> requester..
>
> what sould i use for this mail service?  should i use pop/smpt
> mail client? or are there any other way?
>
> i would like to use vb6 or vb.net 2003 as frontend.
>
> thanks in advance,
>
> VB Newbie
>
>
Author
15 Mar 2006 7:40 AM
VB Newbie
thanks for the response.. as of now im trying vb smtp mail class...

Show quoteHide quote
"Terry Olsen" <tolse***@hotmail.com> wrote in message
news:uoVJYM%23RGHA.224@TK2MSFTNGP10.phx.gbl...
> I've done something like this in the past. I set up a generic SMTP server
> that accepted incoming emails. It did not route these to a mailbox, but
> put them in a specified directory. My app watched the directory for these
> ".eml" files to be created (or use a timer to check periodically).  Parse
> the files for return email address and subject line. Use the VB SmtpMail
> class for sending the response back.
>
> "VB Newbie" <alx***@yahoo.co.uk> wrote in message
> news:e7DH8k9RGHA.4384@tk2msftngp13.phx.gbl...
>> good day pros,
>>
>> i would like to make a sample program that will act as a report
>> service...
>>
>> if someone sends a request via email the system will receive the mail and
>> sends back a respond with an attached pdf report file from a report
>> server
>> depending on the parameter given on the subject line from the sender or
>> requester..
>>
>> what sould i use for this mail service?  should i use pop/smpt
>> mail client? or are there any other way?
>>
>> i would like to use vb6 or vb.net 2003 as frontend.
>>
>> thanks in advance,
>>
>> VB Newbie
>>
>>
>
>
Author
16 Mar 2006 2:48 AM
TonyMast
vb 2005
What class do you use for incoming email?


Show quoteHide quote
"Terry Olsen" <tolse***@hotmail.com> wrote in message
news:uoVJYM%23RGHA.224@TK2MSFTNGP10.phx.gbl...
> I've done something like this in the past. I set up a generic SMTP server
> that accepted incoming emails. It did not route these to a mailbox, but
> put them in a specified directory. My app watched the directory for these
> ".eml" files to be created (or use a timer to check periodically).  Parse
> the files for return email address and subject line. Use the VB SmtpMail
> class for sending the response back.
>
> "VB Newbie" <alx***@yahoo.co.uk> wrote in message
> news:e7DH8k9RGHA.4384@tk2msftngp13.phx.gbl...
>> good day pros,
>>
>> i would like to make a sample program that will act as a report
>> service...
>>
>> if someone sends a request via email the system will receive the mail and
>> sends back a respond with an attached pdf report file from a report
>> server
>> depending on the parameter given on the subject line from the sender or
>> requester..
>>
>> what sould i use for this mail service?  should i use pop/smpt
>> mail client? or are there any other way?
>>
>> i would like to use vb6 or vb.net 2003 as frontend.
>>
>> thanks in advance,
>>
>> VB Newbie
>>
>>
>
>