当前位置: 首页>>代码示例>>C++>>正文


C++ WApplication::makeAbsoluteUrl方法代码示例

本文整理汇总了C++中WApplication::makeAbsoluteUrl方法的典型用法代码示例。如果您正苦于以下问题:C++ WApplication::makeAbsoluteUrl方法的具体用法?C++ WApplication::makeAbsoluteUrl怎么用?C++ WApplication::makeAbsoluteUrl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在WApplication的用法示例。


在下文中一共展示了WApplication::makeAbsoluteUrl方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: sendConfirmMail

void WsNewsLetter::sendConfirmMail(const std::string& email,
                                       const std::string& userToken) const
{
  std::string url = "/newsletter/subscribe/";
  WApplication *app = WApplication::instance();
  url = app->makeAbsoluteUrl(app->bookmarkUrl(url)) + userToken;

  Mail::Message message;

  message.addRecipient(Mail::To, Mail::Mailbox(email));
  message.setSubject(WString::tr("subject"));
  message.setBody(WString::tr("body").arg(email).arg(url));
  message.addHtmlBody(WString::tr("htmlbody").arg(email).arg(url));

  sendMail(message);
}
开发者ID:Wittyshare,项目名称:wittyshare,代码行数:16,代码来源:WsNewsLetterEm.C

示例2: sendConfirmMail

void AuthService::sendConfirmMail(const std::string& address,
			       const User& user, const std::string& token) const
{
  Mail::Message message;

  WApplication *app = WApplication::instance();
  std::string url
    = app->makeAbsoluteUrl(app->bookmarkUrl(redirectInternalPath_)) + token ;

  message.addRecipient(Mail::To, Mail::Mailbox(address));
  message.setSubject(WString::tr("Wt.Auth.confirmmail.subject"));
  message.setBody(WString::tr("Wt.Auth.confirmmail.body")
		  .arg(user.identity(Identity::LoginName))
		  .arg(token).arg(url));
  message.addHtmlBody(WString::tr("Wt.Auth.confirmmail.htmlbody")
		      .arg(user.identity(Identity::LoginName))
		      .arg(token).arg(url));

  sendMail(message);
}
开发者ID:bvanhauwaert,项目名称:wt,代码行数:20,代码来源:AuthService.C

示例3: createRedirectUrl

std::string AuthService::createRedirectUrl(const std::string& token) const
{
    WApplication *app = WApplication::instance();
    return app->makeAbsoluteUrl(app->bookmarkUrl(redirectInternalPath_)) + token;
}
开发者ID:ansons,项目名称:wt,代码行数:5,代码来源:AuthService.C


注:本文中的WApplication::makeAbsoluteUrl方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。