Rosario
Posts: 54
|
| Posted: 07/14/2005, 5:58 AM |
|
I am trying to do an send mail after update i can do it fine as long as its a textbox that is updatable. I have a lable displayed in the update screen as the ticket number that is also the primary key id but i cannot send thet if i try it sends no info just blank, obviosly because its not a text box but i dont know how else to format it, i have right now:
'Send Email @28-CAB5CC12
With CreateObject("CDONTS.NewMail")
.From = Harris.ADMINEMAIL.Text
.To = Harris.REPORTED_EMAIL.Text
.CC = Harris.ADMINEMAIL.Text
.Subject = Harris.HSERVER.Text + " Update on ticket " +
.Body = "Update: "+ Harris.ADMIN_COMMENT.Text
.BodyFormat = 1
.MailFormat = 0
.Send
End With
'End Send Email
|
 |
 |
smalloy
Posts: 107
|
| Posted: 07/14/2005, 9:00 AM |
|
Whenever I have this issue I create a hidden field that is updatable, fill the label AND the hidden field so you can accomplish what you need!
Hope this helps,
Steve
_________________
Anything can be done, just give me time and money. |
 |
 |
|