Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Emails via DTS job

Status
Not open for further replies.

Gragi

Programmer
Oct 4, 2004
59
US
Hi,
I have a package which sends email with attachment to the people who are on the same domain as well to the others who are using different domain.
It used to work fine, but from last 3 days onwards mails are not going and I found that mails are waiting at "C:\Inetpub\mailroot\Queue" and are still waiting from last 3 days.
My email package task is a ActiveXScript and written something like this
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Set ObjSendMail = CreateObject("CDO.Message")
Set iConf = CreateObject("CDO.Configuration")
Set Flds = iConf.Fields

Flds(" = 1

'**** Path below may need to be changed if it is not correct
Flds(" = "c:\inetpub\mailroot\pickup"
Flds.Update

Set ObjSendMail.Configuration = iConf
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
What could be the possible problem.

Thank you, I appreciate your response.
Gragi
 
SMTP access on our exchange server is limited to sending emails within the domain (I believe to prevent spam attacks). Could your email admins have made a change like this?

Hope this helps,

Alex

[small]----signature below----[/small]
With all due respect, Don Bot, I don't think we should rely on an accident happening. Let's kill him ourselves.

Ignorance of certain subjects is a great part of wisdom
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top