Active Directory
(1)
Outlook
(1)
AmodiammHiOutlook
(1)
SmtpServer
(1)
EmailFrom
(1)
YourMailserver
(1)
EmailTo
(1)
SmtpClient
(1)

Automate email for newly created mailbox on exchange

Asked By Amodiam
29-May-07 06:24 AM
Hi,

How we can send an automated mail (Contains defined by User,, Like Welcome
to the firm, welcome note/message in email) to newly created mailbox on
exchange server, we are using exchange 2007 and outlook 2003....

&

how we can automate the outlook configuration, we have aroung 5000 mailbox
on on servers and on daily basis we are create on average 2 mailbox per day.
its difficult to dedicate any engineer to configure outlook profile on the
system.

any idead how we can automate the outlook configuration for users, once user
logon his/her outlook should automaticaaly get configure on the system we do
not have to manually configurae the outllok profile for inbox or to gain
access on messages..

we are using outtlok 2003, we have already tried discovery on outlook 2007
which working fine.

how we can do the same outlook 2003.

Many Thanks in advance.
Regards
Amodiamm

HiOutlook 2003 profile can be configured using the "importprf" switchyou need

Asked By Henr
29-May-07 11:54 AM
Hi
Outlook 2003 profile can be configured using the "importprf" switch
you need a prf file that conatins the Exchange settings.

when creating mailboxes using powershell you could send the initial mail
also using powershell

Henry

Thanks Henry, is it possible to give some idea on importprf & powershell...

Asked By Amodiam
31-May-07 04:46 AM
Thanks Henry,

is it possible to give some idea on importprf & powershell...

I am searching on the microsoft and google... given in little complicated way

how to configure both...

Regards
Amodiamm

Automate email for newly created mailbox on exchange

Asked By Henr
01-Jun-07 02:07 PM
Hi
to create thr prf file follow this link
http://support.microsoft.com/kb/308300/el

when you have finished creating the prf file simple start "outlook.exe
/importprf <yourPRFFile.prf>"

to send a mail using powershell
$emailFrom = "sentFrom@Domain.com"
$emailTo = "sentTo@Domain.com"
$subject = "Powershell"
$body = "Somebody has sent a mail using Powershell."
$smtpServer = "yourMailserver"
$smtp = new-object Net.Mail.SmtpClient($smtpServer)
$smtp.Send($emailFrom,$emailTo,$subject,$body)


hope that helps
Henry
Hi Henry,On a topic similar to this one, would you know how to implement such
Asked By AlanSebastia
07-Jun-07 05:06 PM
Hi Henry,

On a topic similar to this one, would you know how to implement such an
automated email for active directory users that are created?  I've thought
about sending to a pre-gathered list of users created each day but it would
be nice to automate and have an email sent out immediately after a new
account has been created.

Regards,
Alan
Exchange 2007
Asked By Rasha B
26-Jan-09 07:54 AM
yes i am almost having the same concern the we are having exchange 2007 and using outlook 2003& 2007.



i need something to help so upon creation for new user in Active Directory so automatic email to this new user and this there is nothing support this request in exchange 2007.



so any script or support or solution to work around and make it happen?



thanks.
Post Question To EggHeadCafe