The SMTP service account we use to send e-mail from viewpoint works so well with Payroll. We'd like the ability to e-mail the entire company from viewpoint outside of the payroll module. To possibly send announcements and so forth. As we have a lot of turn over in construction, some of our employees do not get an internal e-mail address. So it becomes a task to maintain an address book for notifying active employees. We already have the master list on who's an active employee in Viewpoint.
Company | Whitaker Construction |
Job Title / Role | I/T Director |
I need it... | 6 months |
Dear Viewpoint Suggestion Box contributor;
We at Viewpoint sincerely thank you for your contribution to Suggestion Box on how we can improve Viewpoint products. While we can’t do everything at once, we rely upon your feedback to help guide the prioritization of our product improvements, and Suggestion Box is a critical tool for us to understand and prioritize our customers’ needs.
Viewpoint reviews Suggestion Box regularly for all of our products and updates statuses, adds comments, and performs various house-keeping (including deleting) as needed to ensure that Suggestion Box is maintained as a productive environment for product enhancements requests.
© 2023 Trimble Inc. All Rights Reserved. Viewpoint®, Vista™, Spectrum®, ProContractor™, Jobpac Connect™, Viewpoint Team™, Viewpoint Analytics™, Viewpoint Field View™, Viewpoint Estimating™, Viewpoint For Projects™, Viewpoint HR Management™, Viewpoint Field Management™, Viewpoint Financial Controls™, Vista Field Service™, Spectrum Service Tech™, ViewpointOne™, ProjectSight® and Trimble Construction One™ are trademarks or registered trademarks of Trimble Inc. or its affiliates in the United States and other countries. Other names and brands may be claimed as the property of others.
Here's some code for the SSRS report:
DECLARE @list varchar(max)
Select @list = COALESCE(@list+';','')+Email from bPREH WHERE PRCo=@PRCo AND ActiveYN='Y'
SELECT @list AS [Emails]
Have fun!
I suggest a very simple SSRS report, if the people doing the emailing have OUTLOOK or some other email program on their computer:
If you are trying to use the SMTP server already defined and in use within Viewpoint, you could use something like a WF Notifier Job to do the same thing (not tested):
Personally I'd rather use the SSRS report method as it requires a lot less setup and maintenance. The only advantage I can really see of the 2nd method is VP keeps a log of all the messages it sends, so anyone could check VA MESSAGE ARCHIVE to see if the messages were sent. Otherwise it's up to the sender to keep a copy in their SENT folder in their client.