esmabama
Forum Replies Created
-
Dear Drake,
I appreciate your reply. I have been in touch with the SMTP/ hosting provider for a while.
We did a test script to verify id the SMTP Auth was working:
# Get the credential
$credential = Get-Credential
## Define the Send-MailMessage parameters
$mailParams = @{
SmtpServer = ‘smtp.office365.com’
Port = ‘587’ # or ’25’ if not using TLS
UseSSL = $true ## or not if using non-TLS
Credential = $credential
From = ‘affectedaccount@domain.com’
To = ‘affectedaccount@domain.com’, ‘ExternalRecipientInCC@domain.com’
Subject = “SMTP Client Submission – $(Get-Date -Format g)”
Body = ‘This is a test email using SMTP Client Submission’
DeliveryNotificationOption = ‘OnFailure’, ‘OnSuccess’
}
## Send the message
Send-MailMessage @mailParams
All emails were sent with no issue. So we conclude the problem is on the plugin side.
We are a NGO, with no budget for the PRO version, in order to use the mailer “365/ Outlook” (it is Microsoft providing our email server), we have been using “Other SMTP”.
Do have a suggestion on how to solve this situation?
Thank you for your time in advance.
Forum: Plugins
In reply to: [Polylang] Footer not changing to another languageThe only way I found to make it work is to have a condition per author. So for each one of the languages there is a related author.
Forum: Plugins
In reply to: [Polylang] Footer not changing to another languageEven this method has a limit of 4 pages to establish conditions…
Forum: Plugins
In reply to: [Polylang] Footer not changing to another languageHi there!
The only option that seems to work is by “Edit conditions” in the theme builder for each one of the footers. Then selecting “Include” > “Singular” > “Page” and indicate the page where you want the footer to be seen.
However this is not an ideal method… I have to add a condition for each one of the pages in that language. If you have a lot of pages, as it is my case, it takes sometime to set up all the conditions…
There should be a much simpler way…. and the work multiplies also based on how many languages your website will be available in…