So this has got me perplexed
Posted: Sun Feb 21, 2021 12:21 am
This sends an email just fine
This does suggest that the email has been sent OK but is nowhere to be seen on Outlook, including junk.
If I set the recipient in create mail to any of the well known domains, Gmail, Yahoo, Outlook it works fine. If I set it to my one of my own domains it does not. Is something somewhere thinking it's spam?
Any thoughts would be great!
Code: Select all
If CreateMail(1, "no-reply@gmail.com", "Test")
AddMailRecipient(1, "stevylake@outlook.com",#PB_Mail_To)
SetMailBody(1, "This is the body")
SendMail(1, "chi-node59.websitehostserver.net" , 465 , #PB_Mail_UseSSL , "sales@meatcostings.com", "!????????")
FreeMail(1)
MessageRequester("Mail OK","Mail Sent OK")
EndIf
Code: Select all
If CreateMail(1, "no-reply@parklanedecor.co.uk", "Test")
AddMailRecipient(1, "stevylake@outlook.com",#PB_Mail_To)
SetMailBody(1, "This is the body")
SendMail(1, "chi-node59.websitehostserver.net" , 465 , #PB_Mail_UseSSL , "sales@meatcostings.com", "!????????")
FreeMail(1)
MessageRequester("Mail OK","Mail Sent OK")
EndIf
Any thoughts would be great!