Forms not sending emails, but it works in Install tools - forms

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]

Related

Cannot receive WooCommerce emails / WP emails, Linux mail (ssh) works

Issue : WooCommerce emails are not received.
What does work :
1) with ssh connexion to server, if I use mail Linux command, its works.
2) With WP, Check Email plugin works as well.
3) A user changed his password, I received the email notification, as others WP emails notifications : new user created, and others ...
What does not work :
When I bought something (as a buyer), I have the PayPal email, but any WC email.
Someone else did the same test, same issue.
When I send (as admin) manually, an email to a customer (myself) with WC, it does not work as well.
I think I set up correctly emails with WC : check box => activate notification.
I did not change the look of emails.
Either HTML or text emails does not work.
At the moment, I would not like to use any SMTP plugin, as my server can send emails.
I don't know where to look for about this issue ?
Might PayPal forbid WC to send emails ?
Thank you for your help !
Nils
I just had to set up reverse DNS with domain name to make it works.

Mail followers(OpenERP chatter) does not send email to email client softwares, instead received in INBOX in Odoo messaging

I had included the openerp chatter in my custom module by inheriting 'mail.thread' and adding add follower widget in XML through the following code.
<div class="oe_chatter">
<field name="message_follower_ids" widget="mail_followers"/>
<field name="message_ids" widget="mail_thread" />
</div>
While I add any follower, it shows the wizard to add contacts, but in reality, it does not send emails to email client like thunderbird or any other. But it is sent to their Inbox under messaging in Odoo.
Can anyone please clear the confusions.? Thanks
I have made my comments as below , kindly request you to find it as below it may help in your case
Regading :it does not send emails to email client like thunderbird or any other. But it is sent to their Inbox under messaging in Odoo.
There can have many reason of "not send emails to email client" :
Internet Connection Lost .
Missing Email Template.
Error in Email Template.
Mail Server Not Configure .
Email Notification Not Enable For User.
You can try this useful Link also: How to configure out going mail server in ODOO
So just ensure these things(specifically 4 and 5) at your end ,it may work in your case.

Joomla 3.3 modules not sending e-mails to different domains

I'm trying to confugure a contact form module to send the forms to custom e-mails other than the administrator's, wich is from the same domain as Joomla installation.
When I configure the module to send to administrator's e-mail, it works fine. However when I input other e-mail adresses from different domains to be the recipient, the e-mail isn't sent.
I already tested with Breezing Forms and B2J Contact, and this problem happened with both of them so I suppose it's a Joomla configuration problem. Using B2J Contact allows me to add two e-mail recipients, so I tested using the administrator's as main and the other from a different domain as copy, and I receive the e-mail only on the main recipient.
I'm using PHP Mail as the send method and my Joomla version is 3.3.0.
I've been researching for days and can't seem to find a solution.
Any help would be much appreciated.
I solved this problem by changing the send mail method to SMTP and placing the right port number, which I got from my host provider.

How can I hide the 'to' field in the email sent by php mail

I am using php mail function to allow user to send me a mail from
website.
I am also allowing them to "cc" the email to themselves.
The whole purpose of making a "send us message" feature was not give our email to the users. But when the user selects the "cc" option, in the header of the mail that is sent to the user, the "to" field contains our primary email address.
How can I remove this, so that the users do not see our primary email address in the to field.
You could set the mailTo to an arbitrary mailbox at your domain "noreply#yourdomain.com" and add your company address in BCC?
But whatever reason you have for not exposing your email, imho it's quite unpolite :)
The e-mail message sent to you must have a To: field to be delivered correctly. You could emulate the CC feature by sending to separate e-mail messages to the office and to the client.

Wordpress: Contact Form 7 accepts one email address but not another

I've been using Contact Form 7 in Wordpress without too many problems. In a current installation, I can send mail to webmaster#domain.com but get an error when trying to send mail to user1#domain.com. I've checked this Stack Overflow ticket:
Wordpress - Contact Form 7 Not Sending to Certain Email
But enabling the SMTP mail plugin doesn't modify the behavior of the bug, and the mail server is not external (like the ticket in question). Any idea what the issue might be? Thanks!
EDIT: user#domain.com is a valid email address and also succeeds when running it against open source online email checkers.
Kind of a hack, but I had this happen to me when I tried to have the emails sent outside of the domain to a gmail account. I ended up adding CC: youremail#gmail.com to the Additional Headers and it worked well afterwards.