Forwarding e-mail
Forwarding e-mail
- Casa
- Pannello di controllo
- Forum della Comunità
- Services
- Email Service
- Forwarding e-mail
- Forum della Comunità
- Forwarding e-mail
Argomento: Forwarding e-mail
I currently own the domain my-pool.com. It is not an active website and does not have an e-mail server. I would like to forward all e-mails from sales@my-pool.com to sales02@mypool.com
Would you service handle this and what credentials would i need to make the below code work.
if jsonObj.value("success") then
SET Mailer = Server.CreateObject("Persits.MailSender")
Mailer.Host = "m03.internetmailserver.net"
Mailer.Username = "sales02@mypool.com"
Mailer.Password = ""
Mailer.FromName = request("xfirst_name") & " " & request("xlast_name")
Mailer.From = request("xemail")
Mailer.AddAddress "sales02@mypool.com"
Mailer.Subject = "MyPool.com Customer Inquiry"
Mailer.Body = Order
Mailer.Send
Set Mailer= Nothing
Thank you in advance for you assistance.
Jack Genova
Would you service handle this and what credentials would i need to make the below code work.
if jsonObj.value("success") then
SET Mailer = Server.CreateObject("Persits.MailSender")
Mailer.Host = "m03.internetmailserver.net"
Mailer.Username = "sales02@mypool.com"
Mailer.Password = ""
Mailer.FromName = request("xfirst_name") & " " & request("xlast_name")
Mailer.From = request("xemail")
Mailer.AddAddress "sales02@mypool.com"
Mailer.Subject = "MyPool.com Customer Inquiry"
Mailer.Body = Order
Mailer.Send
Set Mailer= Nothing
Thank you in advance for you assistance.
Jack Genova
Rispondi con citazione |Segnalare
Genochem wrote:I currently own the domain my-pool.com. It is not an active website and does not have an e-mail server. I would like to forward all e-mails from sales@my-pool.com to sales02@mypool.com
Would you service handle this and what credentials would i need to make the below code work.
if jsonObj.value("success") then
SET Mailer = Server.CreateObject("Persits.MailSender")
Mailer.Host = "m03.internetmailserver.net"
Mailer.Username = "sales02@mypool.com"
Mailer.Password = "Chemist99myp!"
Mailer.FromName = request("xfirst_name") & " " & request("xlast_name")
Mailer.From = request("xemail")
Mailer.AddAddress "sales02@mypool.com"
Mailer.Subject = "MyPool.com Customer Inquiry"
Mailer.Body = Order
Mailer.Send
Set Mailer= Nothing
Thank you in advance for you assistance.
Jack Genova
SET Mailer = Server.CreateObject("Persits.MailSender")
Mailer.Host = "smtp.dynu.com"
Mailer.FromName = request("xfirst_name") & " " & request("xlast_name")
Mailer.From = request("xemail")
Mailer.AddAddress "sales@my-pool.com"
Mailer.Subject = "MyPool.com Customer Inquiry"
Mailer.Body = Order
Mailer.Send
Set Mailer= Nothing
Rispondi con citazione |Segnalare
| Autore | Argomento: Forwarding e-mail |
|---|---|
|
Genochem Iscritto: 22/03/2022 |
giovedì 24 marzo 2022 04:40
I currently own the domain my-pool.com. It is not an active website and does not have an e-mail server. I would like to forward all e-mails from sales@my-pool.com to sales02@mypool.com
Would you service handle this and what credentials would i need to make the below code work. if jsonObj.value("success") then SET Mailer = Server.CreateObject("Persits.MailSender") Mailer.Host = "m03.internetmailserver.net" Mailer.Username = "sales02@mypool.com" Mailer.Password = "" Mailer.FromName = request("xfirst_name") & " " & request("xlast_name") Mailer.From = request("xemail") Mailer.AddAddress "sales02@mypool.com" Mailer.Subject = "MyPool.com Customer Inquiry" Mailer.Body = Order Mailer.Send Set Mailer= Nothing Thank you in advance for you assistance. Jack Genova |
|
rahsharma Iscritto: 25/11/2010 |
giovedì 24 marzo 2022 07:29
SET Mailer = Server.CreateObject("Persits.MailSender") Mailer.Host = "smtp.dynu.com" Mailer.FromName = request("xfirst_name") & " " & request("xlast_name") Mailer.From = request("xemail") Mailer.AddAddress "sales@my-pool.com" Mailer.Subject = "MyPool.com Customer Inquiry" Mailer.Body = Order Mailer.Send Set Mailer= Nothing |
sabato 13 giugno 2026 12:05
