@MailSend... Including Fields in the subject.
@MailSend... Including Fields in the subject.
(OP)
I have a few fields:
TapeID, TapeManuf., DDSnumber, DLTnumber, ServerAssigned
I would like to include them in a message. My Formula is:
@MailSend("XXXXX": "XXXXXX";"";"";"IMPORTANT! Back Up Tape Needs Replacing. Tape ID " : TapeID ; "Please replace tape ID" :TapeID : "with a NEW Tape. The tape that needs to be ordered is a" : TapeManuf. : DDSnumber : "," : DLTnumber : ". Which belongs to the " : ServerAssigned : "server. " ;[PriorityHigh]);"")
But this does not seem to send me a complete message. The Subject always shows just "Please replace tape ID". Is it possible to do what I am trying to do?
If so could some one help me out please?
BH2
TapeID, TapeManuf., DDSnumber, DLTnumber, ServerAssigned
I would like to include them in a message. My Formula is:
@MailSend("XXXXX": "XXXXXX";"";"";"IMPORTANT! Back Up Tape Needs Replacing. Tape ID " : TapeID ; "Please replace tape ID" :TapeID : "with a NEW Tape. The tape that needs to be ordered is a" : TapeManuf. : DDSnumber : "," : DLTnumber : ". Which belongs to the " : ServerAssigned : "server. " ;[PriorityHigh]);"")
But this does not seem to send me a complete message. The Subject always shows just "Please replace tape ID". Is it possible to do what I am trying to do?
If so could some one help me out please?
BH2
RE: @MailSend... Including Fields in the subject.
I find it easier to declare the fields first, ie
to:="[Respondent]" ;
cc:="";
bcc:="";
subject:="New Request - " + subject;
remark:="";
bodyfields:="You have received a new request from " +name + "." + @NewLine + "Click here to view it: ";
@MailSend(to; cc; bcc; subject; remark; bodyfields; [IncludeDoclink]);
This way you can also set your if conditions before you send.
DanT
RE: @MailSend... Including Fields in the subject.
BH2
RE: @MailSend... Including Fields in the subject.
That worked great, thanks. Basically I just replaced the : with + and everything is good.
BH2
RE: @MailSend... Including Fields in the subject.
mailContent:="IMPORTANT! Back Up Tape Needs Replacing. Tape ID "+TapeID+"...all the others...";
@MailSend("XXXXX": "XXXXXX";"";"";mailContent);