Is there a way to add voting buttons to an automatically generated emails (viewed in Outlook?) Is there RTF syntax available?
Have you tried to use the MailItem.VotingOptions property?
Related
Is this possible to check to validate a text field on focus out in google forms? Need to check for the unique value and notify the user about an error.
Google forms allow only onload and onsubmit events, so seems no way to check on change, on blur or something like that. "Built-in" capability is quite good, but doesn't cover this situation.
I have a CSV File on my File-System with a list of events, and I need to read the events from this File and just show them up in the Outlook calendar along with other appointments, meetings etc, that are actually in outlook.
So I don't won't to Save to the Server or Send any of these events read from file, just use the calender to show them.
Is that possible?
Thanks
No, Outlook w3ill only show the appointments that exist in the given folder.
As Dmitry noticed, the Outlook object model doesn't provide anything for that (i.e. display items that don't exists in the folder).
But you may consider displaying your own form inside Outlook instead of the built-in one for displaying events and appointments from the CSV file and Outlook calendar.
There are sevaral ways to get the job done:
Use adjucent Outlook windows. See Adjacent Windows In Outlook for more information.
Display a home page for the folder. The WebViewURL property of the Folder class allows to set a string indicating the URL of the Web page that is assigned to a folder.
ADX provides the WebViewPane layout which is actually based on the web view technology. But in that case you will be able to use any.Net controls on the form.
I'm working on some ftl templates and email addresses are coming through as links, specifically on mobile browsers and in Outlook.
Anyone know how to block this from happening?
Thanks in advance!
Note: I am not adding them as links, just the email itself.
This is not a FreeMarker problem. Your using FreeMarker to simply generate HTML. If the HTML being produced is creating an HTML email link, then you need to modify template text, not any freemarker directive or setting.
I assume the template currently looks something like
Send Email
change it to just
${emailAddress}
This has most probably nothing to do with Freemarker. What you are observing is an issue depending on how e-mail clients handle and display e-mails. Some clients just try to "help", identifying web and e-mail addresses etc. and then making them links.
Depending on the Mime type, different mail clients have different ways handling/displaying e-mails. Outlook e.g. sometimes does not display all attachments. It is anything but trivial to send out e-mails that display well in every mail client out there.
This thread on sevenforums.com states that you can trigger hyperlink replacement on or off in the options:
File > Options > Mail > Editor Options > AutoCorrect Options > AutoFormat tab > Replace > Internet and network paths with hyperlinks
I have my fullCalendar functioning well, however, I need to allow the users to remove events from the calendar. I can use the clickEvent method to bring up a confirmation window with a "do you want to remove" message. But this seems kind of clunky. Is there a better UI way of removing events?
Google calendar uses a qTip on click that offers "edit event details" and "delete". At first I didn't like sending users to a different "event details page" but after thinking about this for awhile it is a really good way to go.
It is always safer to ask for a confirm before removing something.
Anyway you can customize the rendering of the event using the eventRender callback
In particular you can:
attach custom markup to render an X image that when clicked will ajax call a delete function
you can attach other jQuery plugins to reproduce exactly the qTip effect
Have a look at the link for more details. Hope it helps
I want to create a custom form in Outlook 2007 and then have that form be the form that comes up when the user clicks New / Mail Message in the toolbar. Is there a way to do that? I know how to create the custom form, but I don't know how to change what the menu item does.
Jon
If you are using an outlook form you can publish it to the Organizational Forms Library and the get you clients to use that new custom form instead of the default out the box form. It a registry change that points it to a new form. There are tools to do this change for you.
A good example http://www.petri.co.il/customizing_new_meeting_request_outlook_form.htm
76mel
There is a great tutorial by Ty Anderson on that located at devx on replacing the standard AppointmentItem inspector with a custom form.
Basically, you need to write code that gets triggered on the NewInspector event and display your form instead and cancel the standard inspector.