PC Review


Reply
Thread Tools Rate Thread

Web Form -to- New Contact

 
 
=?Utf-8?B?WklMTEE=?=
Guest
Posts: n/a
 
      10th Nov 2005
Hello all,
Thanks to Sue Mosher for the script to create a new contact from all sent
emails. Works like a charm, but it's not exactly what I'm looking for.

I have a web form that has specific data, and when submitted, it is sent to
me as a plain-text email. It seems as though I have found bits and pieces to
assemble the code, but just not everything all together.

What I would like is to *create a new contact* only from these emails, which
are recieved in one *specific account*, and with the data that's entered into
the subject and body of the email.

EXAMPLE:
Submitted web form arrives as plain text email.
sent to <(E-Mail Removed)>
Submitter's name is assigned to the "Subject" of the email so:
Full Name = "Subject"
Other data is present in the body of the email so:
Email1 = SubmitterEmail:
Email2 = BrideEmail:
Email3 = GroomEmail:
HomePhone = SubmitterPhone:
HomePhone2 = BridePhone:
BusinessPhone = ChurchPhone:
BusinessPhone2 = HallPhone:
BusinessAddress = ChurchAddress:
BusinessAddress2 = HallAddress:
(Etc.)

A few other things would round it out nicely:
1. Copy the entire body of the email to the Notes section of the
contact form.
2. Assign a Category to the contact.
3. Save it in a special Contacts Folder.

This seems like a tall order for a forum such as this. Let me know if this
is "Over The Top". Meanwhile, thankyou for considering this request.
ZILLA

--
The world is like a book, and those that never leave home read but one page.
St. Augustine of Hippo (354-430)
 
Reply With Quote
 
 
 
 
Sue Mosher [MVP-Outlook]
Guest
Posts: n/a
 
      11th Nov 2005
All the pieces to do that are readily available:

1) http://www.outlookcode.com/d/code/zaphtml.htm for ways to work with incoming items]

2) http://www.outlookcode.com/codedetail.aspx?id=89 for a technique to extract data from a structured text block

3) the Application.CreateItem method to create a new contact or MAPIFolder.Items.Add to add it to a non-default contacts folder (see http://www.outlookcode.com/d/code/getfolder.htm for a procedure to walk the folder tree)

4) http://www.outlookcode.com/d/propsyntax.htm for a primer on working with Outlook item properties.

All you need to do is assemble those building blocks together to fit your particular scenario.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"ZILLA" <(E-Mail Removed)> wrote in message news:F8309E6D-C044-42BA-8F04-(E-Mail Removed)...
> Hello all,
> Thanks to Sue Mosher for the script to create a new contact from all sent
> emails. Works like a charm, but it's not exactly what I'm looking for.
>
> I have a web form that has specific data, and when submitted, it is sent to
> me as a plain-text email. It seems as though I have found bits and pieces to
> assemble the code, but just not everything all together.
>
> What I would like is to *create a new contact* only from these emails, which
> are recieved in one *specific account*, and with the data that's entered into
> the subject and body of the email.
>
> EXAMPLE:
> Submitted web form arrives as plain text email.
> sent to <(E-Mail Removed)>
> Submitter's name is assigned to the "Subject" of the email so:
> Full Name = "Subject"
> Other data is present in the body of the email so:
> Email1 = SubmitterEmail:
> Email2 = BrideEmail:
> Email3 = GroomEmail:
> HomePhone = SubmitterPhone:
> HomePhone2 = BridePhone:
> BusinessPhone = ChurchPhone:
> BusinessPhone2 = HallPhone:
> BusinessAddress = ChurchAddress:
> BusinessAddress2 = HallAddress:
> (Etc.)
>
> A few other things would round it out nicely:
> 1. Copy the entire body of the email to the Notes section of the
> contact form.
> 2. Assign a Category to the contact.
> 3. Save it in a special Contacts Folder.
>
> This seems like a tall order for a forum such as this. Let me know if this
> is "Over The Top". Meanwhile, thankyou for considering this request.
> ZILLA
>
> --
> The world is like a book, and those that never leave home read but one page.
> St. Augustine of Hippo (354-430)

 
Reply With Quote
 
=?Utf-8?B?WklMTEE=?=
Guest
Posts: n/a
 
      11th Nov 2005
Just call me "LT" ... Learning Things. OK, I guess it's time to really dive
in. I'm up to my ankles and already over my head.

Seriously, thanks Sue for your generosity. My research on this subject has
taken my to a lot of places, and I think you've contributed to every one of
them. You, are a gift.

Let's see if I can get the pieces of the puzzle together.
ZILLA
--
The world is like a book, and those that never leave home read but one page.
St. Augustine of Hippo (354-430)


"Sue Mosher [MVP-Outlook]" wrote:

> All the pieces to do that are readily available:
>
> 1) http://www.outlookcode.com/d/code/zaphtml.htm for ways to work with incoming items]
>
> 2) http://www.outlookcode.com/codedetail.aspx?id=89 for a technique to extract data from a structured text block
>
> 3) the Application.CreateItem method to create a new contact or MAPIFolder.Items.Add to add it to a non-default contacts folder (see http://www.outlookcode.com/d/code/getfolder.htm for a procedure to walk the folder tree)
>
> 4) http://www.outlookcode.com/d/propsyntax.htm for a primer on working with Outlook item properties.
>
> All you need to do is assemble those building blocks together to fit your particular scenario.
>
> --
> Sue Mosher, Outlook MVP
> Author of Configuring Microsoft Outlook 2003
> http://www.turtleflock.com/olconfig/index.htm
> and Microsoft Outlook Programming - Jumpstart for
> Administrators, Power Users, and Developers
> http://www.outlookcode.com/jumpstart.aspx
>
>
> "ZILLA" <(E-Mail Removed)> wrote in message news:F8309E6D-C044-42BA-8F04-(E-Mail Removed)...
> > Hello all,
> > Thanks to Sue Mosher for the script to create a new contact from all sent
> > emails. Works like a charm, but it's not exactly what I'm looking for.
> >
> > I have a web form that has specific data, and when submitted, it is sent to
> > me as a plain-text email. It seems as though I have found bits and pieces to
> > assemble the code, but just not everything all together.
> >
> > What I would like is to *create a new contact* only from these emails, which
> > are recieved in one *specific account*, and with the data that's entered into
> > the subject and body of the email.
> >
> > EXAMPLE:
> > Submitted web form arrives as plain text email.
> > sent to <(E-Mail Removed)>
> > Submitter's name is assigned to the "Subject" of the email so:
> > Full Name = "Subject"
> > Other data is present in the body of the email so:
> > Email1 = SubmitterEmail:
> > Email2 = BrideEmail:
> > Email3 = GroomEmail:
> > HomePhone = SubmitterPhone:
> > HomePhone2 = BridePhone:
> > BusinessPhone = ChurchPhone:
> > BusinessPhone2 = HallPhone:
> > BusinessAddress = ChurchAddress:
> > BusinessAddress2 = HallAddress:
> > (Etc.)
> >
> > A few other things would round it out nicely:
> > 1. Copy the entire body of the email to the Notes section of the
> > contact form.
> > 2. Assign a Category to the contact.
> > 3. Save it in a special Contacts Folder.
> >
> > This seems like a tall order for a forum such as this. Let me know if this
> > is "Over The Top". Meanwhile, thankyou for considering this request.
> > ZILLA
> >
> > --
> > The world is like a book, and those that never leave home read but one page.
> > St. Augustine of Hippo (354-430)

>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can a contact form I created be set up as the default contact form Andrea Microsoft Outlook Contacts 2 31st Jan 2008 09:47 AM
default contact form open instead of custom contact form =?Utf-8?B?QmVybmll?= Microsoft Outlook Contacts 1 16th Nov 2005 02:20 AM
Changing a contact form to a business contact form =?Utf-8?B?QnJ5YW5fcl9i?= Microsoft Outlook BCM 0 12th Apr 2005 11:04 AM
Re: Can I make a user-designed contact form the default contact form? Sue Mosher [MVP-Outlook] Microsoft Outlook Form Programming 0 9th Sep 2004 10:43 PM
Importing contact data from sql-source to user defined contact form Stephan Microsoft Outlook Contacts 1 11th Aug 2004 02:18 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:13 PM.