![]() | |
![]() |
| | Thread Tools | Search this Thread | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I was curious what most people do when they want to send an email from their Web application, which is hosted on a shared server owned by another company. Do you simply specify the SMTP host of your own email account, or do shared servers typically have services available that can be used for this? I'm creating an application for a client and am not sure if I should ask them for their email account information, which I assume includes their password, etc. Thanks. -- Jonathan Wood SoftCircuits Programming http://www.softcircuits.com |
#3
| |||
| |||
|
|
I was curious what most people do when they want to send an email from their Web application, which is hosted on a shared server owned by another company. Do you simply specify the SMTP host of your own email account, or do shared servers typically have services available that can be used for this? |
|
I'm creating an application for a client and am not sure if I should ask them for their email account information, which I assume includes their password, etc. |
#4
| |||
| |||
|
|
I was curious what most people do when they want to send an email from their Web application, which is hosted on a shared server owned by another company. Do you simply specify the SMTP host of your own email account, or do shared servers typically have services available that can be used for this? |
|
I'm creating an application for a client and am not sure if I should ask them for their email account information, which I assume includes their password, etc. |
#5
| |||
| |||
|
|
I was curious what most people do when they want to send an email from their Web application, which is hosted on a shared server owned by another company. Do you simply specify the SMTP host of your own email account, or do shared servers typically have services available that can be used for this? I'm creating an application for a client and am not sure if I should ask them for their email account information, which I assume includes their password, etc. Thanks. -- Jonathan Wood SoftCircuits Programming http://www.softcircuits.com |
#6
| |||
| |||
|
|
I was curious what most people do when they want to send an email from their Web application, which is hosted on a shared server owned by another company. Do you simply specify the SMTP host of your own email account, or do shared servers typically have services available that can be used for this? I'm creating an application for a client and am not sure if I should ask them for their email account information, which I assume includes their password, etc. Thanks. -- Jonathan Wood SoftCircuits Programming http://www.softcircuits.com |
#7
| |||
| |||
|
|
I was curious what most people do when they want to send an email from their Web application, which is hosted on a shared server owned by another company. Do you simply specify the SMTP host of your own email account, or do shared servers typically have services available that can be used for this? I'm creating an application for a client and am not sure if I should ask them for their email account information, which I assume includes their password, etc. Thanks. -- Jonathan Wood SoftCircuits Programming http://www.softcircuits.com |
#8
| |||
| |||
|
|
You don't need a user name and password in most cases if you just want to send an email. All you need is an IP address, and a port (usually 25) of a mail server (SMTP service) that would allow you to relay through it. Usually the Hosting company has that information, so your clients may not even know it. To give you an example, I could send emails through a mail server titled mail.abc123.com, as zzUser (AT) abcxyz (DOT) com (a completely different domain). The server you're sending from doesn't need to be related to the server you recieve emails on. It just needs to allow you to send through it. That is called Relaying emails, or allowing relay. In code, you usually specify an IP address, and a port. Or a FQDN (i.e. mail.yahoo.com) and a port. In some cases you would be required to pass a username and password so you can relay through a certain server. This doesn't exactly fit in this group but I'm assuming you don'y know what info is needed to send emails in .Net. -- Mohamad Elarabi Lead Developer. MCTS, MCPD. "Jonathan Wood" wrote: I was curious what most people do when they want to send an email from their Web application, which is hosted on a shared server owned by another company. Do you simply specify the SMTP host of your own email account, or do shared servers typically have services available that can be used for this? I'm creating an application for a client and am not sure if I should ask them for their email account information, which I assume includes their password, etc. Thanks. -- Jonathan Wood SoftCircuits Programming http://www.softcircuits.com |
#9
| |||
| |||
|
|
Using an unprotected "relay" server for sending mail is a great way to have all of your emails deposited directly into the recipient's Junk Mail folder. |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |