@mailsend

I have been reading all I can about @mailsend and what it takes to make it work on the web. I had it working fine in an application last week and now It is not working. The only thing I changed in the database was the ACL for Default. I gave it “No Access”. Everyone that I want to have access is listed either in groups or individually in the ACL.

Any reasons why @mailsend will ‘quit’ working?

I have it in a Computed field (Last field in the form) Computes after validation.

Ex.

Manager and ARName are fields in the form

@If(@IsNewDoc & @IsDocBeingSaved;

@MailSend(Manager + “@mydomain.com”;“”;“”;“Absence Request Form”;“”;“Click on link to the right to view Absence Request Form from “+ARName+”. “;[IncludeDoclink]);””)

Subject: @mailsend

try without include doclink - it doesn’t make sense anyway from the web. If you want to include a link then comput a URL and add it to the body text

Subject: RE: @mailsend

Thanks Chris,

One thing I over looked…I was doing some DB cleanup and I deleted the Default View. Must have a Default view for @mail send to work correctly. Even With [IncludeDocLink]

It works perfectly now