![]() |
Sergey Kornilov admin 2/6/2007 |
Use BeforeEdit event and sample action Send email with new data. Modify code according to your needs. |
D
|
DNuccio author 2/6/2007 |
Use BeforeEdit event and sample action Send email with new data. Modify code according to your needs.
|
J
|
Jane 2/7/2007 |
Dana, |
D
|
DNuccio author 2/7/2007 |
I originally tried that. What I am cunfused on is how to structure it to do what I wanted. |
C
|
clig 2/7/2007 |
I originally tried that. What I am cunfused on is how to structure it to do what I wanted. here is the sample code: ** Dim keys message ="" keys = dict.keys For n = 0 To dict.Count-1 message = message & keys(n) & " : " & dict(keys(n)) & vbcrlf Next email="test@test.com" subject="New data record" sendmail email, subject, message ** Could you please show me how I may be able to email="PASSWORD TABLE ! EMAIL FIELD" subject="PASSWORD TABLE ! USER FULL NAME" & has assigned you application # & "APPLICATION TABLE ! APID" body=" date: "now()" return From: "PASSWORD TABLE ! USER FULLNAME" Applicant: "APPLICATION TABLE ! FIRSTNAME FIELD" return link: "to APID record in edit mode with login permissions of the "PASSWORD TABLE ! USERID & PWD" fields. I am sorry for asking but I am a beginner and an example of this code would help allot.
|