PC Review


Reply
Thread Tools Rate Thread

Change FROM email

 
 
DavidC
Guest
Posts: n/a
 
      28th Jan 2010
We are looking at a web fax servcie and would like to have some of our
automated emails use a common email address when sending a fax so that all go
into a common user inbox. Is that possible? Thanks.
--
David
 
Reply With Quote
 
 
 
 
Sue Mosher [MVP]
Guest
Posts: n/a
 
      28th Jan 2010
Yes, it's possible, but the details depend on the Outlook version and
whether the common inbox is in an Exchange mailbox. You should always
include information like that when posting on an Outlook forum.
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"DavidC" <(E-Mail Removed)> wrote in message
news:592FC123-98F8-40DE-950E-(E-Mail Removed)...
> We are looking at a web fax servcie and would like to have some of our
> automated emails use a common email address when sending a fax so that all
> go
> into a common user inbox. Is that possible? Thanks.
> --
> David



 
Reply With Quote
 
DavidC
Guest
Posts: n/a
 
      29th Jan 2010
Sorry, we are using Exchange and Outlook 2003. It would be nice to have a
solution for either environment. We are web developers and some of our
customers are using Outlook and communicating directly to the mail provider
and others funnelling everything through Exchange. HTH.
--
David


"Sue Mosher [MVP]" wrote:

> Yes, it's possible, but the details depend on the Outlook version and
> whether the common inbox is in an Exchange mailbox. You should always
> include information like that when posting on an Outlook forum.
> --
> Sue Mosher, Outlook MVP
> Author of Microsoft Outlook 2007 Programming:
> Jumpstart for Power Users and Administrators
> http://www.outlookcode.com/article.aspx?id=54
>
>
> "DavidC" <(E-Mail Removed)> wrote in message
> news:592FC123-98F8-40DE-950E-(E-Mail Removed)...
> > We are looking at a web fax servcie and would like to have some of our
> > automated emails use a common email address when sending a fax so that all
> > go
> > into a common user inbox. Is that possible? Thanks.
> > --
> > David

>
>
> .
>

 
Reply With Quote
 
Sue Mosher [MVP]
Guest
Posts: n/a
 
      29th Jan 2010
For Outlook 2003/Exchange 2003, take a look at the
MailItem.SentOnBehalfOfName property.

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"DavidC" <(E-Mail Removed)> wrote in message
news:7082CFEF-6BE0-4A3E-B4EC-(E-Mail Removed)...
> Sorry, we are using Exchange and Outlook 2003. It would be nice to have a
> solution for either environment. We are web developers and some of our
> customers are using Outlook and communicating directly to the mail
> provider
> and others funnelling everything through Exchange. HTH.
> --
> David
>
>
> "Sue Mosher [MVP]" wrote:
>
>> Yes, it's possible, but the details depend on the Outlook version and
>> whether the common inbox is in an Exchange mailbox. You should always
>> include information like that when posting on an Outlook forum.
>>
>> "DavidC" <(E-Mail Removed)> wrote in message
>> news:592FC123-98F8-40DE-950E-(E-Mail Removed)...
>> > We are looking at a web fax servcie and would like to have some of our
>> > automated emails use a common email address when sending a fax so that
>> > all
>> > go
>> > into a common user inbox. Is that possible? Thanks.



 
Reply With Quote
 
DavidC
Guest
Posts: n/a
 
      30th Jan 2010
Thank you. I take it that will not work if the users are not on Exchange?
Or is that not a problem since I am just filling in the FROM email address in
that scenario?
--
David


"Sue Mosher [MVP]" wrote:

> For Outlook 2003/Exchange 2003, take a look at the
> MailItem.SentOnBehalfOfName property.
>
> --
> Sue Mosher, Outlook MVP
> Author of Microsoft Outlook 2007 Programming:
> Jumpstart for Power Users and Administrators
> http://www.outlookcode.com/article.aspx?id=54
>
>
> "DavidC" <(E-Mail Removed)> wrote in message
> news:7082CFEF-6BE0-4A3E-B4EC-(E-Mail Removed)...
> > Sorry, we are using Exchange and Outlook 2003. It would be nice to have a
> > solution for either environment. We are web developers and some of our
> > customers are using Outlook and communicating directly to the mail
> > provider
> > and others funnelling everything through Exchange. HTH.
> > --
> > David
> >
> >
> > "Sue Mosher [MVP]" wrote:
> >
> >> Yes, it's possible, but the details depend on the Outlook version and
> >> whether the common inbox is in an Exchange mailbox. You should always
> >> include information like that when posting on an Outlook forum.
> >>
> >> "DavidC" <(E-Mail Removed)> wrote in message
> >> news:592FC123-98F8-40DE-950E-(E-Mail Removed)...
> >> > We are looking at a web fax servcie and would like to have some of our
> >> > automated emails use a common email address when sending a fax so that
> >> > all
> >> > go
> >> > into a common user inbox. Is that possible? Thanks.

>
>
> .
>

 
Reply With Quote
 
Sue Mosher [MVP]
Guest
Posts: n/a
 
      30th Jan 2010
Correct. If the user is not on Exchange, there is no direct way to change
the sender for an outgoing message. These are known (and sometimes partial)
workarounds using native Outlook functionality:

1) If the user has Outlook 2002/3 and is not using WordMail as the editor,
you set the sending account using CommandBars techniques. See
http://www.outlookcode.com/codedetail.aspx?id=889 for sample code.

2) You can set the SentOnBehalfOfName property, but the recipient will
probably see the user's default sending address as well, which may not be
desireable.

3) If you're mainly concerned about replies to your message going to the
correct place, add the desired reply address to the MailItem.ReplyRecipients
collection.

The third-party Redemption ( http://www.dimastr.com/redemption/ ) library
adds two other solutions:

4) Set an RFC822 header property, as described at
http://www.dimastr.com/redemption/faq.htm#14

5) Set the RDOMail.Account property, as described at
http://www.dimastr.com/redemption/rdo/RDOMail.htm

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"DavidC" <(E-Mail Removed)> wrote in message
news:A8E7FD08-976C-45B7-9105-(E-Mail Removed)...
> Thank you. I take it that will not work if the users are not on Exchange?
> Or is that not a problem since I am just filling in the FROM email address
> in
> that scenario?
> --
> David
>
>
> "Sue Mosher [MVP]" wrote:
>
>> For Outlook 2003/Exchange 2003, take a look at the
>> MailItem.SentOnBehalfOfName property.
>>
>> "DavidC" <(E-Mail Removed)> wrote in message
>> news:7082CFEF-6BE0-4A3E-B4EC-(E-Mail Removed)...
>> > Sorry, we are using Exchange and Outlook 2003. It would be nice to
>> > have a
>> > solution for either environment. We are web developers and some of our
>> > customers are using Outlook and communicating directly to the mail
>> > provider
>> > and others funnelling everything through Exchange. HTH.
>> > --
>> > David
>> >
>> >
>> > "Sue Mosher [MVP]" wrote:
>> >
>> >> Yes, it's possible, but the details depend on the Outlook version and
>> >> whether the common inbox is in an Exchange mailbox. You should always
>> >> include information like that when posting on an Outlook forum.
>> >>
>> >> "DavidC" <(E-Mail Removed)> wrote in message
>> >> news:592FC123-98F8-40DE-950E-(E-Mail Removed)...
>> >> > We are looking at a web fax servcie and would like to have some of
>> >> > our
>> >> > automated emails use a common email address when sending a fax so
>> >> > that
>> >> > all
>> >> > go
>> >> > into a common user inbox. Is that possible? Thanks.



 
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
signature doesn't change when I change to different email account Sinclair Microsoft Outlook Discussion 2 20th Aug 2009 08:45 PM
Pasting in email results in change of font for rest of email soberbruce Windows Vista Mail 3 19th Sep 2008 01:50 AM
Pervent user to change email settings, add new email account =?Utf-8?B?RmFyaGFuIEFobWFkIFNoYWlraA==?= Microsoft Outlook Installation 0 12th Oct 2006 09:11 AM
Reply To in Forms Change to Submit Email Address and not default email Clint Microsoft Frontpage 0 26th Mar 2006 03:45 PM
Access Mail Merge: Change Email Subject according to data souce for each email li.shen@uq.edu.au Microsoft Outlook Interoperability 1 3rd May 2005 01:12 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:23 PM.