PHPBB verification email to user not working - phpbb

I am using PHPBB. I want new users to receive a verification email when they register but it is not working.
My settings:
I am using version 3.1.4.
Enable board-wide emails: Enabled
Email function name: Mail
Contact email address: My email address on my host
Use SMTP server for email: No
When I send a 'mass email' it is received so I know the email address and facility works.
No error log issues to report.
I cannot find a solution for this anywhere.
Would appreicate some help.
Thanks

Related

cPanel web mail does not receive or send mails

In my cPanel account few e-mail accounts are working properly, but some of the email account does not receive or send mails.
here are the errors that I got:
when sending from a gmail account to the cPanel mail:
SMTP error from remote mail server after end of data:
550 High probability of spam
When trying to send from the cPanel email account to my gmail account I get the following message:
Could not deliver message, address not found or don't receive messages.
Can anyone help me solve this?
There are many reasons why this error could occur.
Before that I would recommend that you turn on your Email accounts' Authentication (both SPF and DKIM), those are done through:
cPanel -> Authentication (under the Email section) -> Turn Off DKIM and SPF, then turn them back On
About the second issue - I believe that your domain's mail exchanger (a setting in cPanel) is not properly configured.
If you wish to receive emails for a domain in your cPanel account you need to the following:
cPanel -> Mail Exchanger -> Select your domain -> Select Local Mail Exchanger
You should also see if your mailbox is not Suspended or Partially Suspended

Mailgun unsubscribe text in email

So i have recently added and verified my mailgun account to my DNS & configured it through Exim through (WHM) on my server using the following guide.
enter link description here
It is now tracking my emails which is what i wanted, However on creating a new account through WHM and logging into the webmail into the new account i sent a test email to myself and i have at the bottom of the email "To unsubscribe click LINK"
As I'll be providing clients emails who will need to use emails daily i wouldn't want this link being under every single email they send.
I have upgraded my account, as i believed this would stop it but it hasn't?
Could anybody throw some light on this situation.
Many thanks
Log in to Mailgun, click your Domain Name and then disable the "Unsubscribes" option. This will then remove the link that is being automatically added to your outgoing emails.

Prestashop PHP mail not working

I was looking for a solution here without a luck. I can't send mails from my prestashop using mail() function. I've tested with my own .php file and it works flawlessly, but in presta receive just an error.
I've looked up that my phpinfo has empty "from" value, but I don't know if that's an issue.
What can be the solution? I know that Presta is using swiftmail.
Did you try sending email in Advanced Preferences -> Mail -> Sent a test message (bottom of page)?
Whether the script / module that sending emails, as he does the translations necessary (eg if you send email in Italian, must emails to be translated into Italian).
Regards
To send email from Prestashop, you have to configure SMTP by clicking on
Advanced Preferences -> E-Mail.
A form will be open where you have to enter this :
Server: smtp.gmail.com (if you uses gmail)
Username: your gmail id
Password: your gmail password
Encryption: SSL
Port: 465
Then, write code in PHP to send mail using send() function of class MailCore.php

Default reset password email not sent via Appcelerator backend, nor emails with a template, only email configuration changes are sent

When I execute the following code,
Cloud.Users.requestResetPassword({
email: myUsersEmailAddress
}, function (e) {
if (e.success) {
Ti.API.info('Success: Reset Request Sent ' + JSON.stringify(e));
} else {
Ti.API.error('Error:\n' + ((e.error && e.message) || JSON.stringify(e)));
}
});
I should receive an email to reset my password, as seen in the documentation:
GET users/request_reset_password.json Sends an email to a user
containing a link to recover a lost password. You can use the default
email template provided by ACS, or specify a custom email template
that you have created. When using a custom email template, the email
must contain a properly formatted URL, as explained in the template
method parameter documentation below.
When the alert pops up, I can see that there was a match and that an email should have been sent.
However, I do not receive an email, nor do I see anything in the logs of my email backend (which does receive an email when I adapt my email configuration on the appc backend, thus my email is correctly configured)
I don't have any email templates configured, but according to the documentation it should use appc's default reset password email.
Does anyone has an idea about what I am doing wrong, or does this indicate an issue with appc's documentation or backend?
UPDATE: I have another function which sends email using a self-defined email template. When I invoke this function, i receive the following event(between the {}):
[INFO] : Deactivation email sent. {"success":true,"error":false,"meta":{"status":"ok","code":200,"method_name":"emailFromTemplate"}}
However, nothing is seen on our smtp backend. The only things we do see (and which we receive in our mailbox) are the emails which are sent when you adapt your email configuration settings in Appcelerator's backend, eg.
Subject: Appcelerator Cloud Services SMTP Test
Appcelerator Logo Hi Peter,
Your SMTP settings have been updated successfully!
Onward,
The Appcelerator Platform Team
Thanks,
David
It turned out to be a configuration issue, which could only be discovered by doing some curl calls against the api. So a good advice, test your config with curl too, and don't rely on the emails which are sent after you made a configuration change!

Incoming messages send again by openerp

When someone sends an email message, it can view on openerp inbox but the outgoing email sends again thru the configuration email address I set up.. why is it so?
I'm using Openerp v7.0.. I used the Outgoing Mail Server in the Settings > Technical > Email > Outgoing Mail Servers.
When someone sends an email and openerp retrieved it, it sends again and again an email but by using the email address I configure.
Your question is not quite clear[1], but this sounds like the default and correct behavior. When an OpenERP user receives an external email message, they will by default receive a copy of the email at their own email address (configured in their user preferences).
Let's say someone replies to a CRM Lead assigned to me (by sending an email to info#mycompany.com, which is imported via the fetchmail module into my OpenERP server): I want to receive a copy of this message in my real inbox at myname#mycompany.com).
In OpenERP 7.0 this behavior can be controlled in the "Email Preferences" of the user profiles: you can choose to receive email notification about new comments and new external emails, or about new external emails only, or no notification whatsoever.
[1]: The following information would help: the version of OpenERP you're using, how the emails are being fed to OpenERP (fetchmail module, mail gateway script, something else...), what email addresses are being fed to OpenERP, what email is configured on the user profiles, etc.