Question about sending email in asp.net web application

Question about sending email in asp.net web application

am 08.04.2008 19:24:44 von gnewsgroup

I am using Peter Bromberg's code to send email through gmail smtp
service in my asp.net web application. Thanks, Peter.

The problem with gmail smtp is that gmail will overwrite the sender's
address with whichever the gmail smtp server authenticates. In other
words, even if you say

mailMessage.From = new MailAddress("johndoe@somewhere.com");

But, if you authenticate yourself through "janedoe@gmail.com",

Then the sender address will be overwritten as "janedoe@gmail.com".

I understand that this makes perfect anti-spamming sense.

Here is my situation. I have domain mydomain.com, and I am using the
google apps email service with this mydomain.com. So, I have email
addresses like

info@mydomain.com
feedback@mydomain.com

But, I cannot authenticate neither of these against gmail smtp server,
so I have to use gnewsgroup@gmail.com to get authenticated, but then,
recipients will see that my email is from gnewsgroup@gmail.com instead
of from info@mydomain.com. This is very unprofessional, isn't it?

So, here is the question, I don't have a mail server on mydomain.com,
is there a work around to send mail and recipient would see that the
email is from info@mydomain.com?

Thank you.

Re: Question about sending email in asp.net web application

am 08.04.2008 21:21:53 von nomailreplies

Would setting up your Email domain through GoogleApps help ?

http://www.google.com/a/help/intl/en/index.html




Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en espaƱol : http://asp.net.do/foros/
======================================
"gnewsgroup" wrote in message
news:8a6995d8-7933-4d4d-89b9-fc6e1024a29d@z38g2000hsc.google groups.com...
>I am using Peter Bromberg's code to send email through gmail smtp
> service in my asp.net web application. Thanks, Peter.
>
> The problem with gmail smtp is that gmail will overwrite the sender's
> address with whichever the gmail smtp server authenticates. In other
> words, even if you say
>
> mailMessage.From = new MailAddress("johndoe@somewhere.com");
>
> But, if you authenticate yourself through "janedoe@gmail.com",
>
> Then the sender address will be overwritten as "janedoe@gmail.com".
>
> I understand that this makes perfect anti-spamming sense.
>
> Here is my situation. I have domain mydomain.com, and I am using the
> google apps email service with this mydomain.com. So, I have email
> addresses like
>
> info@mydomain.com
> feedback@mydomain.com
>
> But, I cannot authenticate neither of these against gmail smtp server,
> so I have to use gnewsgroup@gmail.com to get authenticated, but then,
> recipients will see that my email is from gnewsgroup@gmail.com instead
> of from info@mydomain.com. This is very unprofessional, isn't it?
>
> So, here is the question, I don't have a mail server on mydomain.com,
> is there a work around to send mail and recipient would see that the
> email is from info@mydomain.com?
>
> Thank you.
>
>

RE: Question about sending email in asp.net web application

am 08.04.2008 21:26:01 von pbromberg

I haven't tried using the ReplyTo property to see if that would help, but in
a pinch you could always invite your "selves" to get their own unique gmail
addresses and use the correct one for each.
-- Peter
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short Urls & more: http://ittyurl.net


"gnewsgroup" wrote:

> I am using Peter Bromberg's code to send email through gmail smtp
> service in my asp.net web application. Thanks, Peter.
>
> The problem with gmail smtp is that gmail will overwrite the sender's
> address with whichever the gmail smtp server authenticates. In other
> words, even if you say
>
> mailMessage.From = new MailAddress("johndoe@somewhere.com");
>
> But, if you authenticate yourself through "janedoe@gmail.com",
>
> Then the sender address will be overwritten as "janedoe@gmail.com".
>
> I understand that this makes perfect anti-spamming sense.
>
> Here is my situation. I have domain mydomain.com, and I am using the
> google apps email service with this mydomain.com. So, I have email
> addresses like
>
> info@mydomain.com
> feedback@mydomain.com
>
> But, I cannot authenticate neither of these against gmail smtp server,
> so I have to use gnewsgroup@gmail.com to get authenticated, but then,
> recipients will see that my email is from gnewsgroup@gmail.com instead
> of from info@mydomain.com. This is very unprofessional, isn't it?
>
> So, here is the question, I don't have a mail server on mydomain.com,
> is there a work around to send mail and recipient would see that the
> email is from info@mydomain.com?
>
> Thank you.
>
>
>

Re: Question about sending email in asp.net web application

am 08.04.2008 22:09:00 von gnewsgroup

On Apr 8, 3:21 pm, "Juan T. Llibre" wrote:
> Would setting up your Email domain through GoogleApps help ?
>
> http://www.google.com/a/help/intl/en/index.html
>
> Juan T. Llibre, asp.net MVP
> asp.net faq :http://asp.net.do/faq/
> foros de asp.net, en espa=F1ol :http://asp.net.do/foros/
> ==================== =====
==============

Well, I am already using the gmail apps with my own email domain like
info@mydomain.com. In other words, I log onto google's apps site and
check my email. Although it is really gmail, but I have my own
domain.

But, I cannot authenticate my custom domain email against gmail smtp.
It seems that one can get authenticated by gmail smtp only if he uses
the explicit gmail (i.e. username@gmail.com) credentials.

Re: Question about sending email in asp.net web application

am 08.04.2008 22:11:58 von gnewsgroup

On Apr 8, 3:26 pm, Peter Bromberg [C# MVP]
wrote:
> I haven't tried using the ReplyTo property to see if that would help, but in
> a pinch you could always invite your "selves" to get their own unique gmail
> addresses and use the correct one for each.
> -- Peter
> Site:http://www.eggheadcafe.com
> UnBlog:http://petesbloggerama.blogspot.com
> Short Urls & more:http://ittyurl.net
>


Well, I did try the ReplyTo property. It helps in that when the user
hits the Reply button, the ReplyTo email address will automatically
jump to the To: field.

But, still, the recipient can see that this email is from
gnewsgroup@gmail.com instead of info@mydomain.com.

Re: Question about sending email in asp.net web application

am 08.04.2008 22:24:25 von gnewsgroup

On Apr 8, 3:26 pm, Peter Bromberg [C# MVP]
wrote:
> I haven't tried using the ReplyTo property to see if that would help, but in
> a pinch you could always invite your "selves" to get their own unique gmail
> addresses and use the correct one for each.
> -- Peter
> Site:http://www.eggheadcafe.com
> UnBlog:http://petesbloggerama.blogspot.com
> Short Urls & more:http://ittyurl.net
>

OK, the thing is, I would like to let the user see that s/he received
the email from info@mydomain.com instead of someone@gmail.com.

How does the SMTP service that comes with IIS work? I tried it a long
time ago, but it was not successful, and had to give it up.

Re: Question about sending email in asp.net web application

am 08.04.2008 22:28:18 von gnewsgroup

On Apr 8, 4:11 pm, gnewsgroup wrote:
> On Apr 8, 3:26 pm, Peter Bromberg [C# MVP]
>
> wrote:
> > I haven't tried using the ReplyTo property to see if that would help, but in
> > a pinch you could always invite your "selves" to get their own unique gmail
> > addresses and use the correct one for each.
> > -- Peter
> > Site:http://www.eggheadcafe.com
> > UnBlog:http://petesbloggerama.blogspot.com
> > Short Urls & more:http://ittyurl.net
>
> Well, I did try the ReplyTo property. It helps in that when the user
> hits the Reply button, the ReplyTo email address will automatically
> jump to the To: field.
>
> But, still, the recipient can see that this email is from
> gnewsgr...@gmail.com instead of i...@mydomain.com.

Looks like SendMail for Windows can do that. 49 bucks a copy.

Re: Question about sending email in asp.net web application

am 09.04.2008 16:23:19 von DownlodComponent

Hello
i am using google applications and host my domain email with Gmail .
I have a user name called support and i am able to authenticate and
send email .
Can you post your code including user name also ? Do not forget to
remove the password

http://www.codeexplore.com/
Make money writing articles

On Apr 8, 10:09 pm, gnewsgroup wrote:
> On Apr 8, 3:21 pm, "Juan T. Llibre" wrote:
>
> > Would setting up your Email domain through GoogleApps help ?
>
> >http://www.google.com/a/help/intl/en/index.html
>
> > Juan T. Llibre,asp.netMVP
> >asp.netfaq :http://asp.net.do/faq/
> > foros deasp.net, en espa=F1ol :http://asp.net.do/foros/
> > ==================== =====
==============
>
> Well, I am already using the gmail apps with my own email domain like
> i...@mydomain.com. In other words, I log onto google's apps site and
> check my email. Although it is really gmail, but I have my own
> domain.
>
> But, I cannot authenticate my custom domain email against gmail smtp.
> It seems that one can get authenticated by gmail smtp only if he uses
> the explicit gmail (i.e. usern...@gmail.com) credentials.

Re: Question about sending email in asp.net web application

am 09.04.2008 19:18:04 von gnewsgroup

On Apr 9, 10:23 am, DownlodComponent wrote:
> Hello
> i am using google applications and host my domain email with Gmail .
> I have a user name called support and i am able to authenticate and
> send email .
> Can you post your code including user name also ? Do not forget to
> remove the password
>
> http://www.codeexplore.com/
> Make money writing articles
>


Hey, that sounds exciting to me. Please take a look at the code I use
at the following link. I think it's nicer to for eye to put it on a
webpage instead of here at this newsgroup.

http://gnewsgroup.googlepages.com/sendemailviagmailsmtp

That's the code that works. I haven't been able to succeed with my
custom domain email through smtp.gmail.com. Please do share how you
had it work. Thanks a lot!

Re: Question about sending email in asp.net web application

am 09.04.2008 19:20:36 von gnewsgroup

On Apr 9, 10:23 am, DownlodComponent wrote:
> Hello
> i am using google applications and host my domain email with Gmail .
> I have a user name called support and i am able to authenticate and
> send email .
> Can you post your code including user name also ? Do not forget to
> remove the password
>
> http://www.codeexplore.com/
> Make money writing articles
>

One thing I need to add is that I am only use the free google apps, I
am not paying anything. Don't know if this makes a difference.

code for sending email

am 21.04.2008 20:01:24 von unknown

Here is the code you asked for
http://www.codeexplore.com/Articles/57580a9f-5b4b-462e-8b58- 75ed6286ee76/How_to_send_email_using_Gmail_SMTP_servers

Email me if you face any trouble .