J
Jesslyn Hendrix
I feel like an idiot for asking this question, as I am sure there is a
simple way to do this, but...
I have about 5 custom forms that either create a new email message or
manipulate the current email message using fill-in information. When a user
has a signature, it gets incorporated into my resultant email messages and
sometimes because of the way that I add the information, it gets inserted
multiple times.
Is there a way to stop the multiple signatures?
Simplified Example
User Name: John Doe
Week of: November 10th
Dear Joan, please be aware that JOHN DOE, will be in your area the week of
NOVEMBER 10th to.....
my code would be
oitem.body = "Dear Joan, please be aware that " &_
oitem.body = oitem.body & oprop("Name").value ...and so on adding the other
text and concatenating to the value of each userproperty
I am aware that I could use one really long string , but sometimes I need to
separate the email body to get different text formatting or add lists, etc.
Please help.
simple way to do this, but...
I have about 5 custom forms that either create a new email message or
manipulate the current email message using fill-in information. When a user
has a signature, it gets incorporated into my resultant email messages and
sometimes because of the way that I add the information, it gets inserted
multiple times.
Is there a way to stop the multiple signatures?
Simplified Example
User Name: John Doe
Week of: November 10th
Dear Joan, please be aware that JOHN DOE, will be in your area the week of
NOVEMBER 10th to.....
my code would be
oitem.body = "Dear Joan, please be aware that " &_
oitem.body = oitem.body & oprop("Name").value ...and so on adding the other
text and concatenating to the value of each userproperty
I am aware that I could use one really long string , but sometimes I need to
separate the email body to get different text formatting or add lists, etc.
Please help.