Faxes

Is there a way to create a Fax form through Notes 6?

Thanks

Christy

Subject: Faxes

Using VSI-Fax, in the To field on the memo form enter SomeName@FaxNumberwithnodashes@Fax

Works great!

Subject: Faxes

Place this behind an action button…

recipient := vendorcontact+“@”+VendorFax+“@Fax”;

subjectline := “Purchase Order No.” + " " + wonum;

@Command ([EditDocument];“1”);

@Command([MailForward]);

@Command([EditGotoField] ; “EnterSendTo” );

@Command([EditInsertText]; recipient);

@Command ([EditDocument];“1”);

@Command([EditGotoField] ; “Subject” );

@Command( [EditInsertText]; subjectline);

@Command ([EditDocument];“0”);

@PostedCommand([FileSave]);

@Command([FileCloseWindow])

We are using VSI-Fax and it works like a charm!