Hi ,
I have a web based application , when one approves it will go to next approver and so on . and finally last approver approves and closed the request .
can i send a notification mail to a static e-mail address like xyz@abc.co.in
can anyone tell me for the both Formula language and Lotus script . I tried @mailsend but its not working .
Another problem i’m facing with my application is that i am sending mail to 10 people previously it was working but suddenly it stops working , i didn’t understand what is the problem exactly
the code is like this :-
Dim array(1To 10) As String
array(1)=doc.name1(0)
array(2)=doc.name2(0)
array(3)=doc.name3(0)
array(4)=doc.name4(0)
array(5)=doc.name5(0)
array(6)=doc.name6(0)
array(7)=doc.name7(0)
array(8)=doc.name8(0)
array(9)=doc.name9(0)
array(10)=doc.name10(0)
Maildoc.CopyTo=array
previously whatever the name selected , mail goes to those selected person . But now i try to send its not working .
can anyone suggest where the actual problem is .