This topic is locked

Variable for table name?

3/10/2009 7:57:52 AM
ASPRunnerPro General questions
B
bhicks11 author

Can anyone tell me what variable I would use to indicate a table name in an email message? I'm also having trouble with the SMTP settings in my email. It was working last build and now generates an error?
Dim dkeys, mvar
mvar = dal.table

message ="A new item has been added to "

message = message & mvar

message = message & ":" & vbcrlf
dkeys = dict.keys

For n = 0 To dict.Count-1

message = message & dkeys(n) & " : " & dict(dkeys(n)) & vbcrlf

Next
email="myemail"

subject="New Item"
sendmail email, subject, message
BeforeAdd = True

Sergey Kornilov admin 3/10/2009

Use strTableName as a table name.