Is there any way to send email along with graph as an attachment or how can I include graphs into email and send it to particular user?
You can do this with either a Visualforce Email Template. It requires knowledge of HTM, Visualforce, and Apex. You may be able to get by with the Professional Edition and no Apex, but to really do anything powerful, you'd need the Enterprise Edition.
Creating a Visualforce Email Template
Related
I have developed a dashboard in Power BI that I would like to embed in an email body - Outlook, Gmail etc. Is this possible please and has anyone been successful at doing this?
No, embedding requires a lot of javascript code and a modern browser to work. Currently it is not possible to get this working in an e-mail body, because it will violate event basic security policies. Embed it in a web application hosted somewhere (or if the recipients has access to it, you can leave it in Power BI Service) and send and link to it (you can add an image if you want) in the e-mail.
I have created email in marketing cloud, in email I have Email form, once client fills the details and submits the form I want to populate thank you message based on the client language.
I have created Interactive email page to achieve this, but I'm not able to get URL parameters for language code in interactive email page.
Can anyone please help me with this.
Thanks in Advance!
At this stage, interactive email form doesn't allow you to pass parameters to the cloud page. That's a limitation on the feature. However, I noticed we can access the standard parameters that are generally available within the cloud page using Personalization Strings
%%_SubscriberKey%%
Btw, post for all Salesforce related questions on Salesforce Stack Exchange
https://salesforce.stackexchange.com/
I want to create a bi-wekly digest email from various content. I have already created a scraper that will scrape relevant content from across the web and create a beautiful html email. This is all done outside Marketo application.
Now, is there a way or API available in marketo that I can use to auto-send this bi-weekly email outside Marketo application?
There is a create email API http://developers.marketo.com/documentation/asset-api/create-email/ but not sure how this works.
Any kind of direction will be highly appreciated.
I'm trying to create a custom email for ClearQuest in order to:
format the message more neatly
include a hyperlink to a change request (which is based on the Defect schema) on our local intranet
The only way I know of to send an email is to add an email rule using a static form submission via a Email_Rule Stateless Record Type (which comes with the Defect schema). The only customization it allows is to select the fields to include in the email, the criteria specifying when to send the email (e.g. when the state changes), and who to send it to.
I'm assuming a script is run (either in VB or Perl) in order to aggregate the information needed for the email and perhaps another to actually send the email. I'm looking for one or both of those scripts. Does anyone know where those scripts are located on a ClearQuest server?
I've come across various references from IBM that pertain to custom emails, but none were very helpful.
http://www.ibm.com/developerworks/rational/library/4329.html (from 2003 and ClearQuest v1.1)
http://www.ibm.com/developerworks/rational/library/3931.html (from 2002, no version specified)
We're using ClearQuest v7.1.2. Does anyone know of any good references dealing with ClearQuest custom emails?
We are using Clear Quest Email Notification Package, that allows much more flexible email notifications.
Link
The package is compatible with ClearQuest 7.1.2.
You can download new version from the following location:
http://cqadmin.org/wiki/ClearQuest_Email_Notification_Package
Newer versions of ClearQuest have a new Email notification package that does what you want and is also robust to network failures and supports different email services and a high level of security. That is, the email is saved as a record and a service runs that ensures emails get sent.
The name of the package is EmailPlus and it also uses a WebApp, EmailRelay, which performs the email notification duties.
More details found here.
https://www.ibm.com/support/knowledgecenter/SSSH5A_8.0.0/com.ibm.rational.clearquest.schema.ec.doc/topics/sch_pkgs/c_emp_package.htm
I have to send a thanks email (if someone emails to the particular account they will get automatic email saying "Thanks for sending"). How should I do this in asp.net mvc 2? What is the logic?
Consider using a brilliant library MvcMailer
You can use it to send text or html email, which body you define as a view. You can use whatever model you need and render emails with specific data.
It is available as a NuGet package for easy install.