I receive Emails notifications for everytime someone enters their info
in our web form. Would I be able to setup SQL Server 2000 to import
the data from that email into a SQL table? What would the script look
like for capturing that email and executing the import? Here's what
the email looks like:
==============
From: Tim Smith
Bussinnes: Example company
Form name: Rental Service Catalog Request (RSCR)
SQL Backup String: INSERT INTO pos_forms (post_date, post_time,
form_name, full_name, contact_title, company_name, address, city,
state, zip, email, phone, fax, comments_questions)VALUES
('02.26.2008', '11:33', 'RSCR', 'Tim Smith', 'Production Coordinator',
'Example company', '#234 Known Street', 'San Diego', 'CA', '92154',
'test@domain.com', '(858) 111-1111', '(858) 222-2222', 'Hello. This
is a test from the comments and questions field. Thank you')
==============
Thanks,
Tibor Karaszi - 08 Mar 2008 19:26 GMT
You might want to check out sp_processmail. It relies on SQL Mail which uses MAPI which isn't the
nicest solution in the world, I should add...

Signature
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://sqlblog.com/blogs/tibor_karaszi
>I receive Emails notifications for everytime someone enters their info
> in our web form. Would I be able to setup SQL Server 2000 to import
[quoted text clipped - 18 lines]
>
> Thanks,