Umbraco 7.5 form submission Issue - email

I use UmbracoForms for uploading video by user . a very simple form which needs some approvals , so my question is :
as the following attachment, I have a workflow called "sending email to admin" .
In this picture , I set the sender and receiver email statically.
but I cant receive any submission email in admin inbox.
whats the problem with my settings

Related

Forms not sending emails, but it works in Install tools

I have a TYPO3 default form with 2 text fields. I submit the form and I get the "Thank you" message, but I dont receive the email in my Gmail inbox.
I checked the spam folder but nothing. I tested to send email via Install tools and I received the email.
I use SMTP :
[MAIL][transport] = smtp
how can I know why mails are not sent in TYPO3 default form ?
I found the solution,
I just have to change the Sender address to the same as [MAIL][defaultMailFromAddress]

How can I send a form by email with titanium

I have seen the email dialog example and also the email dialog example, but I am not looking for an email client interface.
I also took a look at the pizza ordering app, and I couldn't find any method for the send button.
I have custom text fields and in the end I want to send the whole form to an email recipient. I can't find the way to do that.
That is, I would appreciate your help.
For sending E-mail from your app , you have these options :-
1- Using Titanium.UI.EmailDialog .
The Email Dialog is created with the Titanium.UI.createEmailDialog method. The user needs to register an e-mail account on the device in order to open the dialog. The dialog will not open when there is not a registered e-mail account.
Ex : Android
Read more http://docs.appcelerator.com/platform/latest/#!/api/Titanium.UI.EmailDialog
But As you said you don`t want like this ! and if you want to send direct messages from your app please see these other options :-
2- Make any backend service like #PHP to send email
for ex:- http://www.w3schools.com/php/func_mail_mail.asp, and using Titanium.Network.HTTPClient to connect with your backend service .
3- Using ArrowDB
Enjoy !
Follow these steps,
1) Create webservice method to send email.
2) Call particular email method in the button click.
Note :
Apple will not approve if you don't provide valid reason to send email via webservice. They might think you are trying to spam users.
Create a web service (e.g. a PHP script) that receives POST data and send an email based on it.
In your app, clicking the button simply collects all the data and POST it to your web service.
You can not check this on emulator/simulator only can check on device. And in device you need to configure any email account like gmail or outlook mail.
var emailDialog = Ti.UI.createEmailDialog();
emailDialog.subject = "Hello from Titanium";
emailDialog.toRecipients = ['foo#yahoo.com'];
emailDialog.messageBody = '<b>Appcelerator Titanium Rocks!</b>';
var f = Ti.Filesystem.getFile('cricket.wav');
emailDialog.addAttachment(f);
emailDialog.open();

Joomla 2.5 - where to change registration mail sending, user confirmation email is sent to admin email, not to user

Joomla 2.5 with Virtuemart 2.0.18. When the user try to register with the new "user email" to Joomla, the confirmation email has been sent. But user confirmation email has been send to "admin email" not to "user email". Then order confirmation email in virtuemart is sent correctly to "user email". Do you think it can be caused of Joomla or it can cause mail server ? Which .php files to check the sending files ?
Ok. update was absolutely unsuccesful, because of uncompatibility of template and also older version Joomla. My sollution is at the moment to make clean Joomla 3 installation and make new joomla 3 compatible template. It takes sometime but will be for me faster then trying to update everything. The I set "php mail" in Global Configuration of joomla and thatt's it.

Joomla 3.2.3 has email sending bug I believe - Is it true?

I used few email sending third party modules... and every time same problem happened..
problem:
I sign in as any user at my front-end and send a email - Email is successfully mailed & I receive mail in my mail box
But if i do the same thing without any user being logged in ... as a visitor then on submit that form is displayed again with blank fields + No errors Reports and no mail is send & received...
normally in other versions of joomla those same forms either show a error saying Mail Not Send ..or Could not Instiate etc ... & If they successfully send it - those form show a Thank You msg
Modules I used -
1.Rapid Contact &
2.Responsive Contact Form
Now I shifted to another Joomla version & both are working perfectly....
Please help

Make email public with url

It might not be an email integration problem but I would like to get solutions on it using various software available on internet or programming it using API.
Task:
I send money transaction confirmation emails using php/.net code to people and cc it to myself too. It is required to show the email to someone who does not have access to the email account.
Is it possible to automate any of the following:
Any way of showing an email sent from code/gmail/mailchimp/mandril/zapier/sendgrid as url
Any service already available that takes a screenshot of email from gmail/mailchimp/mandril/zapier/sendgrid etc. and post on a public url using ftp details
Programmatically take a screenshot of email sent from code/gmail/mailchimp/mandril/zapier/sendgrid and post on a public url using ftp details
Any other way of making email public of any email sent using code/gmail/mailchimp/mandril/zapier/sendgrid