Hey Mike,
Open PaymentSettings.vb, and scroll down to the SendPKeys() function. That's where the product keys are generated and emailed to the user. As you can see the "from" field is used from your ASP.NET configuration.
Hi!Where do you edit the 'From' email name and address TA uses to send product key after Paypal?VB.net
Thanks,Mike
Hey Mike,
Open PaymentSettings.vb, and scroll down to the SendPKeys() function. That's where the product keys are generated and emailed to the user. As you can see the "from" field is used from your ASP.NET configuration.
Hey Wyatt,I found the SendPKeys section but not the 'from' field.What line is it?
Thanks,Mike
It's the lines in the comment:
' System.Net.Mail reads SMTP configuration data out of the standard .NET configuration system' (so for ASP.NET applications youd configure this in your applications web.config file).
' Here is an example of how to configure it:
' <system.net>' <mailSettings>' <smtp from="test@foo.com">' <network host="smtpserver1" port="25"' userName="username" password="secret" defaultCredentials="true" />' </smtp>' </mailSettings>' </system.net>