![]() |
Sergey Kornilov admin 3/16/2006 |
Larry, Function BeforeAdd(dict) message ="" keys = dict.keys For n = 0 To dict.Count-1 message = message & keys(n) & " : " & dict(keys(n)) & vbcrlf Next email=dict("entered_mail") email1="admin@test.com" subject="New data record" sendmail email, subject, message sendmail email1, subject, message End Function
|
A
|
ashumak 3/30/2006 |
Works so far although I hear some do not go through for some reason. |
![]() |
Sergey Kornilov admin 3/31/2006 |
Hi,
myMail.TextBody= message
myMail.HtmlBody= message |
A
|
ashumak 3/31/2006 |
O.k. Too fast for me. The email being sent is the new data added to the table. All I really want is the same html style as the view the see. Where do I find the email test to add html tags to? |
![]() |
Sergey Kornilov admin 3/31/2006 |
Alan, For n = 0 To dict.Count-1 message = message & keys(n) & " : " & dict(keys(n)) & " " Next |