adding office 365 e-mail

walshprintingservices2
46 Posts
walshprintingservices2 posted this 07 December 2020
Ask a Question

Hi ,
Under your website code/online form, use your mail provider SMTP server, like Office365 one in this case.
If you have any other problems, or if there is anything else we can do to assist you just let us know.

Hi folks, I need to add an office 365 mail to my site, how do I do this?

Office 365 smtp settings are

Server/smart host smtp.office365.com
Port Port 587 (recommended) or port 25
TLS/StartTLS Enabled

Username is email address and the password u use is a once off app password I create since MFA is enabled on the info account?

Where are these settings in your code or where are they modifiable?

Hi , Under your website code/online form, use your mail provider SMTP server, like Office365 one in this case. If you have any other problems, or if there is anything else we can do to assist you just let us know. Hi folks, I need to add an office 365 mail to my site, how do I do this? Office 365 smtp settings are Server/smart host smtp.office365.com Port Port 587 (recommended) or port 25 TLS/StartTLS Enabled Username is email address and the password u use is a once off app password I create since MFA is enabled on the info account? Where are these settings in your code or where are they modifiable?
Vote to pay developers attention to this features or issue.
5 Replies
Order By: Standard | Newest
Support Team
Support Team posted this 08 December 2020

Hi,

Nicepage send email PHP script does not support SMTP email sending. But you can use a custom PHP script that supports the desired email sending method.

...................................................
Sincerely,
Olivia
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Hi, Nicepage send email PHP script does not support SMTP email sending. But you can use a custom PHP script that supports the desired email sending method. ................................................... Sincerely, Olivia Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
walshprintingservices2
46 Posts
walshprintingservices2 posted this 08 December 2020

Thanks Olivia, how do i set that up? aaron

Thanks Olivia, how do i set that up? aaron
Support Team
Support Team posted this 10 December 2020

Aaron,

Please refer to
https://nicepage.com/doc/62334/send-emails-with-php-script

...................................................
Sincerely,
Allen R.
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Aaron, Please refer to https://nicepage.com/doc/62334/send-emails-with-php-script ................................................... Sincerely, Allen R. Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
CSE Webdesign
8 Posts
CSE Webdesign posted this 08 March 2023

In FormProcessor.php there seems to be a phpmailer option. I use:
public $Mailer = 'smtp';
public $Host = 'smtp.office365.com';
public $Port = 587;
public $SMTPSecure = 'tls';
public $SMTPAutoTLS = true;
public $SMTPAuth = true;
public $Username = 'user@domain.nl';
public $Password = 'wachtwoord';

What Am I missing?

In FormProcessor.php there seems to be a phpmailer option. I use: public $Mailer = 'smtp'; public $Host = 'smtp.office365.com'; public $Port = 587; public $SMTPSecure = 'tls'; public $SMTPAutoTLS = true; public $SMTPAuth = true; public $Username = 'user@domain.nl'; public $Password = 'wachtwoord'; What Am I missing?
Support Team
Support Team posted this 09 March 2023

Hello,

Unfortunately, the Nicepage send mail script does not support SMTP email submission. It works with the standard PHP mail function.

...................................................
Sincerely,
Olivia
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Hello, Unfortunately, the Nicepage send mail script does not support SMTP email submission. It works with the standard PHP mail function. ................................................... Sincerely, Olivia Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
You must log in or register to leave comments