A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook - Using Contacts
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Tags: , , ,

Change contact type from EX to SMTP





 
 
Thread Tools Display Modes
  #1  
Old March 17th 08, 09:04 AM posted to microsoft.public.outlook.contacts
Krykino
external usenet poster
 
Posts: 6
Default Change contact type from EX to SMTP

Is there a way to convert all the contacts from EX from SMTP according to the
global address list?
Ads
  #2  
Old March 17th 08, 09:46 AM posted to microsoft.public.outlook.contacts
Russ Valentine [MVP-Outlook]
external usenet poster
 
Posts: 8,273
Default Change contact type from EX to SMTP

That is an Exchange question, not an Outlook question.
--
Russ Valentine
[MVP-Outlook]
"Krykino" wrote in message
...
Is there a way to convert all the contacts from EX from SMTP according to
the
global address list?


  #3  
Old March 18th 08, 01:26 AM posted to microsoft.public.outlook.contacts
Krykino
external usenet poster
 
Posts: 6
Default Change contact type from EX to SMTP

I think it is an outlook question. Now i'm using outlook 2003. If i'm out of
office, I was unable to check name using the global address list. If I choose
an user in the global address list and add to contact, EX (address type)
would appear in the contact instead of SMTP. So I need to know the way to
make all the addresses in the global address list change to SMTP after add in
contact. I've read an article:
http://kamhungsoh.com/blog/2007/07/o...ress-type.html.
According to the article, I need to do it one by one. Is there a way that it
will automatically change to SMTP and without doing it one by one?


"Russ Valentine [MVP-Outlook]" wrote:

That is an Exchange question, not an Outlook question.
--
Russ Valentine
[MVP-Outlook]
"Krykino" wrote in message
...
Is there a way to convert all the contacts from EX from SMTP according to
the
global address list?


  #4  
Old March 18th 08, 01:35 AM posted to microsoft.public.outlook.contacts
Russ Valentine [MVP-Outlook]
external usenet poster
 
Posts: 8,273
Default Change contact type from EX to SMTP

Think what you want. The GAL is in the AD and solely within Exchanges'
domain.
--
Russ Valentine
[MVP-Outlook]
"Krykino" wrote in message
...
I think it is an outlook question. Now i'm using outlook 2003. If i'm out
of
office, I was unable to check name using the global address list. If I
choose
an user in the global address list and add to contact, EX (address type)
would appear in the contact instead of SMTP. So I need to know the way to
make all the addresses in the global address list change to SMTP after add
in
contact. I've read an article:
http://kamhungsoh.com/blog/2007/07/o...ress-type.html.
According to the article, I need to do it one by one. Is there a way that
it
will automatically change to SMTP and without doing it one by one?


"Russ Valentine [MVP-Outlook]" wrote:

That is an Exchange question, not an Outlook question.
--
Russ Valentine
[MVP-Outlook]
"Krykino" wrote in message
...
Is there a way to convert all the contacts from EX from SMTP according
to
the
global address list?



  #5  
Old April 25th 08, 07:50 PM posted to microsoft.public.outlook.contacts
TLSebastian
external usenet poster
 
Posts: 1
Default Change contact type from EX to SMTP

I'd like to do the same thing. Is there a formula or macro you can write in
Excel? And do I really have to post this to the Excel forum to get an answer
if the problem originates with how Outlook handles Exchange information?

--
Trisha L. Sebastian
Research Assistant, Brown Harris Stevens


"Russ Valentine [MVP-Outlook]" wrote:

That is an Exchange question, not an Outlook question.

  #6  
Old April 25th 08, 08:02 PM posted to microsoft.public.outlook.contacts
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 3,085
Default Change contact type from EX to SMTP

There is no way to actually change Exchange entries in the GAL from EX to
SMTP. To get the SMTP address for a contact from the GAL you need to write
code. The code for versions of Outlook earlier than Outlook 2007 can't use
the Outlook object model, it would have to use CDO 1.21 or Extended MAPI
(C++ or Delphi only) or the Redemption library (www.dimastr.com/redemption).
For Outlook 2007 code you can use the PropertyAccessor object to access the
properties you need.

That won't change the addresses it will just return the SMTP address for the
EX address. After the code is run the GAL entries will still be the same.

There is sample code at www.cdolive.com/cdo5.htm for getting the SMTP
address using CDO 1.21, the Redemption Web site has samples for Redemption.

Programming questions should really be asked in
microsoft.public.outlook.program_vba.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"TLSebastian" wrote in message
...
I'd like to do the same thing. Is there a formula or macro you can write
in
Excel? And do I really have to post this to the Excel forum to get an
answer
if the problem originates with how Outlook handles Exchange information?

--
Trisha L. Sebastian
Research Assistant, Brown Harris Stevens


"Russ Valentine [MVP-Outlook]" wrote:

That is an Exchange question, not an Outlook question.


  #7  
Old May 20th 08, 08:01 PM posted to microsoft.public.outlook.contacts
JohnSul
external usenet poster
 
Posts: 1
Default Change contact type from EX to SMTP

I was doing a search for the same thing (change EX to SMTP). These posts
gave me some ideas on how to do it. So I just did it successfully. Here's
how:

(This only works if your EX contacts have the email address embedded in the
DisplayAs field. That is "John Smith )"

1. Export all your contacts to Excel.
2. In Excel, insert 3 or 4 columns after EmailType field.
3. In one of these inserted columns, extract the email address as text from
the DisplayAs field. Assuming the DisplayAs is stored in cell BH4, I simply
did this:
=MID(BH4,FIND("(",BH4)+1,(FIND(")",BH4)-FIND("(",BH4))-1)
This will give you just "
4. In another free column, just do ="smtp:"& bh4
5. Copy this final column and overwrite your EmailAddress column by pasting
values. In other words, overwrite the garbage shown in the EmailAddress
column with proper email addresses with the smtp prefix.
6. Delete any columns you added.
7. Save the file.
8. In Outlook, import the newly created file into your contacts list being
sure to check that you want to overwrite duplicates.
9. This will change the format of all of these contacts to SMTP from EX.
10. The only problem now is that all of the email addresses have "smtp:" in
front of them. But this is easy to fix now because you just export the
contacts to Excel again, but this time the "EmailAddress" field will not
contain garbage.
11. Select the EmailAddress column and do a search and replace (search for
"smtp:" and replace with nothing.
12. Save the file, then import it back into your Outlook contacts
(overwrite duplicates).
13. You are done.

Mine worked perfectly.





"Ken Slovak - [MVP - Outlook]" wrote:

There is no way to actually change Exchange entries in the GAL from EX to
SMTP. To get the SMTP address for a contact from the GAL you need to write
code. The code for versions of Outlook earlier than Outlook 2007 can't use
the Outlook object model, it would have to use CDO 1.21 or Extended MAPI
(C++ or Delphi only) or the Redemption library (www.dimastr.com/redemption).
For Outlook 2007 code you can use the PropertyAccessor object to access the
properties you need.

That won't change the addresses it will just return the SMTP address for the
EX address. After the code is run the GAL entries will still be the same.

There is sample code at www.cdolive.com/cdo5.htm for getting the SMTP
address using CDO 1.21, the Redemption Web site has samples for Redemption.

Programming questions should really be asked in
microsoft.public.outlook.program_vba.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"TLSebastian" wrote in message
...
I'd like to do the same thing. Is there a formula or macro you can write
in
Excel? And do I really have to post this to the Excel forum to get an
answer
if the problem originates with how Outlook handles Exchange information?

--
Trisha L. Sebastian
Research Assistant, Brown Harris Stevens


"Russ Valentine [MVP-Outlook]" wrote:

That is an Exchange question, not an Outlook question.



 




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
E-mail type both SMTP and FAX? Zoran Outlook - General Queries 1 January 16th 08 03:26 PM
E-mail type EX vice SMTP BCNU Outlook - Using Contacts 0 January 16th 08 01:16 PM
Subject field type change? MHull69 Outlook - Using Forms 5 January 19th 07 09:14 PM
how to change an smtp file Leslie Outlook - Using Contacts 3 May 26th 06 03:56 PM
how to change the Editor type Ram Outlook and VBA 1 March 28th 06 08:49 PM


All times are GMT +1. The time now is 11:46 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2008 Outlook Banter, part of the NewsgroupBanter project.
The comments are property of their posters.
Mortgages - Personal Finance - Car Insurance - Bad Credit Mortgages - Online Advertising