emails

M

martin de lange

Hiya

Project & PWA 2003

Are there more global ways of emailing task notifications than just the
person that receives the task that sets up his notifications ? eg. can
someone else be notified if a new task is created or a certain task reaches
completion.

regards
Martin
 
B

burcu

This macro send mail to resources when today is baseline start date of a
task.
hope this helps.
Sub mail2()
MsgBox ActiveProject.Tasks.Count
SelectBeginning

For i = 1 To ActiveProject.Tasks.Count

If CDate(DateFormat(ActiveCell.Task.BaselineStart, pjDate_mm_dd_yy))
= CDate(DateFormat(Date, pjDate_mm_dd_yy)) Then
If ActiveCell.Task.deadline <> "" Then
govde = "Bu bir otomatik iletidir. Proje Adý:" &
ActiveCell.Task.Name & "Baþlama Tarihi " & ActiveCell.Task.Start & "Teslim
Tarihi:" & ActiveCell.Task.deadline
Else
govde = "Bu bir otomatik iletidir. Proje Adý:" &
ActiveCell.Task.Name & "Baþlama Tarihi " & ActiveCell.Task.Start
End If
If ActiveCell.Task.Resources.Count <> 0 Then
For j = 1 To ActiveCell.Task.Resources.Count
b = MailSend(ActiveCell.Task.Resources(j).EMailAddress, ,
"Yapýlacaklar", govde, , False)
Next j
End If
End If
SelectCellDown

Next i
 
M

martin de lange

Are there anymore automated ways to send emails in PWA or would this be
getting into the SDK area?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top